]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: mac/data.cpp | |
3 | // Purpose: Various global Mac-specific data | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #include "wx/event.h" | |
15 | ||
16 | #if wxUSE_SHARED_LIBRARY | |
17 | ///// Event tables (also must be in one, statically-linked file for shared libraries) | |
18 | ||
19 | // This is the base, wxEvtHandler 'bootstrap' code which is expanded manually here | |
20 | const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; } | |
21 | ||
22 | const wxEventTable wxEvtHandler::sm_eventTable = | |
23 | { NULL, &wxEvtHandler::sm_eventTableEntries[0] }; | |
24 | ||
25 | const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } }; | |
26 | #endif | |
27 |