kernel32: Remove DECLSPEC_HIDDEN usage.

This commit is contained in:
Alistair Leslie-Hughes 2023-09-13 18:04:17 +10:00 committed by Alexandre Julliard
parent 47526fbf13
commit 016c29ad6e

View file

@ -40,9 +40,9 @@ static inline BOOL set_ntstatus( NTSTATUS status )
return !status;
}
extern SYSTEM_BASIC_INFORMATION system_info DECLSPEC_HIDDEN;
extern SYSTEM_BASIC_INFORMATION system_info;
extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc ) DECLSPEC_HIDDEN;
extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen ) DECLSPEC_HIDDEN;
extern WCHAR *FILE_name_AtoW( LPCSTR name, BOOL alloc );
extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen );
#endif