Commit fcd587a8 authored by Alexandre Julliard's avatar Alexandre Julliard

winemac.drv: Remove DECLSPEC_HIDDEN usage.

parent 35b3ff8a
......@@ -64,5 +64,5 @@ enum {
void OnMainThread(dispatch_block_t block);
macdrv_event* macdrv_create_event(int type, WineWindow* window) DECLSPEC_HIDDEN;
macdrv_event* macdrv_retain_event(macdrv_event *event) DECLSPEC_HIDDEN;
macdrv_event* macdrv_create_event(int type, WineWindow* window);
macdrv_event* macdrv_retain_event(macdrv_event *event);
......@@ -27,10 +27,10 @@
#include "ntgdi.h"
#include "unixlib.h"
extern NTSTATUS WINAPI macdrv_dnd_query_drag(void *arg, ULONG size) DECLSPEC_HIDDEN;
extern NTSTATUS WINAPI macdrv_dnd_query_drop(void *arg, ULONG size) DECLSPEC_HIDDEN;
extern NTSTATUS WINAPI macdrv_dnd_query_exited(void *arg, ULONG size) DECLSPEC_HIDDEN;
extern NTSTATUS WINAPI macdrv_dnd_query_drag(void *arg, ULONG size);
extern NTSTATUS WINAPI macdrv_dnd_query_drop(void *arg, ULONG size);
extern NTSTATUS WINAPI macdrv_dnd_query_exited(void *arg, ULONG size);
extern HMODULE macdrv_module DECLSPEC_HIDDEN;
extern HMODULE macdrv_module;
#endif /* __WINE_MACDRV_DLL_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment