gameux: Remove DECLSPEC_HIDDEN usage.

This commit is contained in:
Alistair Leslie-Hughes 2023-11-08 17:35:27 +11:00 committed by Alexandre Julliard
parent 354b11cd9d
commit f818ac4a8c

View file

@ -18,8 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
extern HRESULT GameExplorer_create(IUnknown* pUnkOuter, IUnknown **ppObj) DECLSPEC_HIDDEN;
extern HRESULT GameStatistics_create(IUnknown* pUnkOuter, IUnknown **ppObj) DECLSPEC_HIDDEN;
extern HRESULT GameExplorer_create(IUnknown* pUnkOuter, IUnknown **ppObj);
extern HRESULT GameStatistics_create(IUnknown* pUnkOuter, IUnknown **ppObj);
/*******************************************************************************
* Helper functions and structures
@ -64,7 +64,7 @@ struct GAMEUX_GAME_DATA
HRESULT GAMEUX_FindGameInstanceId(
LPCWSTR sGDFBinaryPath,
GAME_INSTALL_SCOPE installScope,
GUID* pInstanceId) DECLSPEC_HIDDEN;
GUID* pInstanceId);
/*******************************************************************************
* GAMEUX_buildGameRegistryPath
*
@ -93,4 +93,4 @@ HRESULT GAMEUX_FindGameInstanceId(
*/
HRESULT GAMEUX_buildGameRegistryPath(GAME_INSTALL_SCOPE installScope,
LPCGUID gameInstanceId,
LPWSTR* lpRegistryPath) DECLSPEC_HIDDEN;
LPWSTR* lpRegistryPath);