1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

oleacc: Remove DECLSPEC_HIDDEN usage.

This commit is contained in:
Alistair Leslie-Hughes 2023-06-30 20:10:47 +10:00 committed by Alexandre Julliard
parent 84b101c580
commit f573cd10a8
2 changed files with 9 additions and 9 deletions

View File

@ -33,10 +33,10 @@ static const WCHAR lresult_atom_prefix[] = {'w','i','n','e','_','o','l','e','a',
#define NAVDIR_INTERNAL_HWND 10
DEFINE_GUID(SID_AccFromDAWrapper, 0x33f139ee, 0xe509, 0x47f7, 0xbf,0x39, 0x83,0x76,0x44,0xf7,0x45,0x76);
extern HRESULT WINAPI OLEACC_DllGetClassObject(REFCLSID, REFIID, void**) DECLSPEC_HIDDEN;
extern BOOL WINAPI OLEACC_DllMain(HINSTANCE, DWORD, void*) DECLSPEC_HIDDEN;
extern HRESULT WINAPI OLEACC_DllRegisterServer(void) DECLSPEC_HIDDEN;
extern HRESULT WINAPI OLEACC_DllUnregisterServer(void) DECLSPEC_HIDDEN;
extern HRESULT WINAPI OLEACC_DllGetClassObject(REFCLSID, REFIID, void**);
extern BOOL WINAPI OLEACC_DllMain(HINSTANCE, DWORD, void*);
extern HRESULT WINAPI OLEACC_DllRegisterServer(void);
extern HRESULT WINAPI OLEACC_DllUnregisterServer(void);
static HINSTANCE oleacc_handle = 0;

View File

@ -25,10 +25,10 @@ struct win_class_data {
BOOL stub;
const void *vtbl;
};
const struct win_class_data* find_class_data(HWND, const struct win_class_data*) DECLSPEC_HIDDEN;
const struct win_class_data* find_class_data(HWND, const struct win_class_data*);
HRESULT create_client_object(HWND, const IID*, void**) DECLSPEC_HIDDEN;
HRESULT create_window_object(HWND, const IID*, void**) DECLSPEC_HIDDEN;
HRESULT get_accpropservices_factory(REFIID, void**) DECLSPEC_HIDDEN;
HRESULT create_client_object(HWND, const IID*, void**);
HRESULT create_window_object(HWND, const IID*, void**);
HRESULT get_accpropservices_factory(REFIID, void**);
int convert_child_id(VARIANT *v) DECLSPEC_HIDDEN;
int convert_child_id(VARIANT *v);