inetcpl.cpl: Remove DECLSPEC_HIDDEN usage.

This commit is contained in:
Alistair Leslie-Hughes 2023-07-29 18:15:52 +10:00 committed by Alexandre Julliard
parent 3969c56ef1
commit 4d14f2ddea
2 changed files with 5 additions and 5 deletions

View file

@ -38,7 +38,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(inetcpl);
DECLSPEC_HIDDEN HMODULE hcpl;
HMODULE hcpl;
/*********************************************************************
* DllMain (inetcpl.@)

View file

@ -27,10 +27,10 @@
#include <commctrl.h>
extern HMODULE hcpl;
INT_PTR CALLBACK connections_dlgproc(HWND, UINT, WPARAM, LPARAM) DECLSPEC_HIDDEN;
INT_PTR CALLBACK content_dlgproc(HWND, UINT, WPARAM, LPARAM) DECLSPEC_HIDDEN;
INT_PTR CALLBACK general_dlgproc(HWND, UINT, WPARAM, LPARAM) DECLSPEC_HIDDEN;
INT_PTR CALLBACK security_dlgproc(HWND, UINT, WPARAM, LPARAM) DECLSPEC_HIDDEN;
INT_PTR CALLBACK connections_dlgproc(HWND, UINT, WPARAM, LPARAM);
INT_PTR CALLBACK content_dlgproc(HWND, UINT, WPARAM, LPARAM);
INT_PTR CALLBACK general_dlgproc(HWND, UINT, WPARAM, LPARAM);
INT_PTR CALLBACK security_dlgproc(HWND, UINT, WPARAM, LPARAM);
#define NUM_PROPERTY_PAGES 8