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

dpnet/tests: Remove DECLSPEC_HIDDEN usage.

This commit is contained in:
Alistair Leslie-Hughes 2023-06-28 18:44:52 +10:00 committed by Alexandre Julliard
parent 5a9450db7f
commit f934c8879a

View File

@ -24,9 +24,9 @@ enum firewall_op
APP_REMOVE
};
extern BOOL is_firewall_enabled(void) DECLSPEC_HIDDEN;
extern BOOL is_process_elevated(void) DECLSPEC_HIDDEN;
extern HRESULT set_firewall( enum firewall_op op ) DECLSPEC_HIDDEN;
extern BOOL is_stub_dll(const char *filename) DECLSPEC_HIDDEN;
extern BOOL is_firewall_enabled(void);
extern BOOL is_process_elevated(void);
extern HRESULT set_firewall( enum firewall_op op );
extern BOOL is_stub_dll(const char *filename);
#endif