]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/macnotfy.h
corrected includes for Mac OS X
[wxWidgets.git] / include / wx / mac / macnotfy.h
CommitLineData
ee6b1d97
SC
1/* -------------------------------------------------------------------------
2 * Project: Mac Notifier Support
3 * Name: macnotfy.h
4 * Author: Stefan CSomor
5 * Purpose: Mac Notifier include file
6 * CVSID: $Id$
7 * -------------------------------------------------------------------------
8 */
9
10#ifndef MAC_NOTIFYERS
11#define MAC_NOTIFYERS
12
13#ifdef __cplusplus
14extern "C" {
15#endif /* __cplusplus */
16
17typedef void (*wxMacNotificationProcPtr)(unsigned long event , void* data ) ;
18
19typedef void *wxMacNotifierTableRef ;
20void wxMacCreateNotifierTable() ;
21void wxMacDestroyNotifierTable() ;
22wxMacNotifierTableRef wxMacGetNotifierTable() ;
23void wxMacAddEvent( wxMacNotifierTableRef table , wxMacNotificationProcPtr handler , unsigned long event , void* data , short wakeUp ) ;
24void wxMacWakeUp() ;
25void wxMacProcessNotifierEvents() ;
26void wxMacProcessNotifierAndPendingEvents() ;
27void wxMacRemoveAllNotifiersForData( wxMacNotifierTableRef table , void* data ) ;
28
29#ifdef __cplusplus
30}
31#endif /* __cplusplus */
32
33#endif /* MAC_NOTIFYERS */