From: Alistair Leslie-Hughes leslie_alistair@hotmail.com
--- dlls/d3dxof/d3dxof_private.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/dlls/d3dxof/d3dxof_private.h b/dlls/d3dxof/d3dxof_private.h index babc37085e8..9f208dfc9cb 100644 --- a/dlls/d3dxof/d3dxof_private.h +++ b/dlls/d3dxof/d3dxof_private.h @@ -160,12 +160,12 @@ typedef struct { LONG ref; } IDirectXFileSaveObjectImpl;
-HRESULT IDirectXFileImpl_Create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN; +HRESULT IDirectXFileImpl_Create(IUnknown *pUnkOuter, LPVOID *ppObj);
-HRESULT parse_header(parse_buffer *buf, BYTE **decomp_buffer_ptr) DECLSPEC_HIDDEN; -BOOL parse_object(parse_buffer * buf) DECLSPEC_HIDDEN; -BOOL parse_templates(parse_buffer * buf, BOOL templates_only) DECLSPEC_HIDDEN; +HRESULT parse_header(parse_buffer *buf, BYTE **decomp_buffer_ptr); +BOOL parse_object(parse_buffer * buf); +BOOL parse_templates(parse_buffer * buf, BOOL templates_only);
-int mszip_decompress(int inlen, int outlen, char* inbuffer, char* outbuffer) DECLSPEC_HIDDEN; +int mszip_decompress(int inlen, int outlen, char* inbuffer, char* outbuffer);
#endif /* __D3DXOF_PRIVATE_INCLUDED__ */
This merge request was approved by Matteo Bruni.