]> git.saurik.com Git - wxWidgets.git/blame - src/mac/classic/data.cpp
wxVariant is in wxBase so should be forward declared using WXDLLIMPEXP_BASE and not...
[wxWidgets.git] / src / mac / classic / data.cpp
CommitLineData
2646f485
SC
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
65571936 9// Licence: wxWindows licence
2646f485
SC
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
18const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; }
19
20const wxEventTable wxEvtHandler::sm_eventTable =
21 { NULL, &wxEvtHandler::sm_eventTableEntries[0] };
22
23const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } };
24#endif
25