| 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/event.h" |
| 13 | |
| 14 | #if wxUSE_SHARED_LIBRARY |
| 15 | ///// Event tables (also must be in one, statically-linked file for shared libraries) |
| 16 | |
| 17 | // This is the base, wxEvtHandler 'bootstrap' code which is expanded manually here |
| 18 | const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; } |
| 19 | |
| 20 | const wxEventTable wxEvtHandler::sm_eventTable = |
| 21 | { NULL, &wxEvtHandler::sm_eventTableEntries[0] }; |
| 22 | |
| 23 | const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } }; |
| 24 | #endif |
| 25 | |