wxMac compilation fixes for visibility (missing DLL export macros)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-08-13 22:06:26 +00:00
parent a4535b9f39
commit e17206f71b
7 changed files with 40 additions and 37 deletions

View File

@@ -9,7 +9,9 @@
#ifndef MAC_NOTIFYERS
#define MAC_NOTIFYERS
#include "wx/dlimpexp.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
@@ -17,13 +19,13 @@ extern "C" {
typedef void (*wxMacNotificationProcPtr)(unsigned long event , void* data ) ;
typedef void *wxMacNotifierTableRef ;
void wxMacCreateNotifierTable() ;
void wxMacDestroyNotifierTable() ;
wxMacNotifierTableRef wxMacGetNotifierTable() ;
void wxMacAddEvent( wxMacNotifierTableRef table , wxMacNotificationProcPtr handler , unsigned long event , void* data , short wakeUp ) ;
void wxMacProcessNotifierEvents() ;
void wxMacProcessNotifierAndPendingEvents() ;
void wxMacRemoveAllNotifiersForData( wxMacNotifierTableRef table , void* data ) ;
WXDLLIMPEXP_BASE void wxMacCreateNotifierTable() ;
WXDLLIMPEXP_BASE void wxMacDestroyNotifierTable() ;
WXDLLIMPEXP_BASE wxMacNotifierTableRef wxMacGetNotifierTable() ;
WXDLLIMPEXP_BASE void wxMacAddEvent( wxMacNotifierTableRef table , wxMacNotificationProcPtr handler , unsigned long event , void* data , short wakeUp ) ;
WXDLLIMPEXP_BASE void wxMacProcessNotifierEvents() ;
WXDLLIMPEXP_BASE void wxMacProcessNotifierAndPendingEvents() ;
WXDLLIMPEXP_BASE void wxMacRemoveAllNotifiersForData( wxMacNotifierTableRef table , void* data ) ;
#ifdef __cplusplus
}