Matteo Bruni (@Mystral) commented about dlls/d3dx9_36/volume.c:
- *dst_buffer = buffer;
- return D3D_OK;
}
HRESULT WINAPI D3DXSaveVolumeToFileA(const char *dst_filename, D3DXIMAGE_FILEFORMAT file_format, IDirect3DVolume9 *src_volume, const PALETTEENTRY *src_palette, const D3DBOX *src_box) {
- FIXME("dst_filename %s, file_format %#x, src_volume %p, src_palette %p, src_box %p stub.\n",
wine_dbgstr_a(dst_filename), file_format, src_volume, src_palette, src_box);
- return E_NOTIMPL;
- ID3DXBuffer *buffer;
- WCHAR *filename;
- int32_t len;
- HRESULT hr;
- TRACE("(%s, %#x, %p, %p, %p): relay.\n", wine_dbgstr_a(dst_filename), file_format, src_volume, src_palette, src_box);
Let's recover the message from the `FIXME()` (minus " stub") instead.