Marcus Meissner : d3dx9_36: Mark internal symbols as hidden.
Module: wine Branch: master Commit: e550c537f3839e7f54f1c3cfc2ffcbf5e6192d74 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e550c537f3839e7f54f1c3cfc2... Author: Marcus Meissner <meissner(a)suse.de> Date: Fri May 13 16:41:30 2011 +0200 d3dx9_36: Mark internal symbols as hidden. --- dlls/d3dx9_36/d3dx9_36_private.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dlls/d3dx9_36/d3dx9_36_private.h b/dlls/d3dx9_36/d3dx9_36_private.h index ccbef62..f770c62 100644 --- a/dlls/d3dx9_36/d3dx9_36_private.h +++ b/dlls/d3dx9_36/d3dx9_36_private.h @@ -44,14 +44,14 @@ typedef struct _PixelFormatDesc { FormatType type; } PixelFormatDesc; -HRESULT map_view_of_file(LPCWSTR filename, LPVOID *buffer, DWORD *length); -HRESULT load_resource_into_memory(HMODULE module, HRSRC resinfo, LPVOID *buffer, DWORD *length); +HRESULT map_view_of_file(LPCWSTR filename, LPVOID *buffer, DWORD *length) DECLSPEC_HIDDEN; +HRESULT load_resource_into_memory(HMODULE module, HRSRC resinfo, LPVOID *buffer, DWORD *length) DECLSPEC_HIDDEN; -const PixelFormatDesc *get_format_info(D3DFORMAT format); -const PixelFormatDesc *get_format_info_idx(int idx); +const PixelFormatDesc *get_format_info(D3DFORMAT format) DECLSPEC_HIDDEN; +const PixelFormatDesc *get_format_info_idx(int idx) DECLSPEC_HIDDEN; /* debug helpers */ -const char *debug_d3dxparameter_class(D3DXPARAMETER_CLASS c); -const char *debug_d3dxparameter_type(D3DXPARAMETER_TYPE t); +const char *debug_d3dxparameter_class(D3DXPARAMETER_CLASS c) DECLSPEC_HIDDEN; +const char *debug_d3dxparameter_type(D3DXPARAMETER_TYPE t) DECLSPEC_HIDDEN; #endif /* __WINE_D3DX9_36_PRIVATE_H */
participants (1)
-
Alexandre Julliard