Module: wine Branch: master Commit: e040777841d92703d68658e139b7918de9495d47 URL: https://gitlab.winehq.org/wine/wine/-/commit/e040777841d92703d68658e139b7918...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Nov 20 17:55:23 2023 +0100
explorer: Remove DECLSPEC_HIDDEN usage.
---
programs/explorer/explorer_private.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/programs/explorer/explorer_private.h b/programs/explorer/explorer_private.h index 995e7eb803e..df598187fc1 100644 --- a/programs/explorer/explorer_private.h +++ b/programs/explorer/explorer_private.h @@ -21,11 +21,11 @@ #ifndef __WINE_EXPLORER_PRIVATE_H #define __WINE_EXPLORER_PRIVATE_H
-extern void manage_desktop( WCHAR *arg ) DECLSPEC_HIDDEN; -extern void initialize_systray( HMODULE graphics_driver, BOOL using_root, BOOL enable_shell ) DECLSPEC_HIDDEN; -extern void initialize_appbar(void) DECLSPEC_HIDDEN; -extern void handle_parent_notify( HWND hwnd, WPARAM wp ) DECLSPEC_HIDDEN; -extern void do_startmenu( HWND owner ) DECLSPEC_HIDDEN; -extern LRESULT menu_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) DECLSPEC_HIDDEN; +extern void manage_desktop( WCHAR *arg ); +extern void initialize_systray( HMODULE graphics_driver, BOOL using_root, BOOL enable_shell ); +extern void initialize_appbar(void); +extern void handle_parent_notify( HWND hwnd, WPARAM wp ); +extern void do_startmenu( HWND owner ); +extern LRESULT menu_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
#endif /* __WINE_EXPLORER_PRIVATE_H */