git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20126 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
26 lines
911 B
C++
26 lines
911 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: mac/data.cpp
|
|
// Purpose: Various global Mac-specific data
|
|
// Author: Stefan Csomor
|
|
// Modified by:
|
|
// Created: 1998-01-01
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Stefan Csomor
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/event.h"
|
|
|
|
#if wxUSE_SHARED_LIBRARY
|
|
///// Event tables (also must be in one, statically-linked file for shared libraries)
|
|
|
|
// This is the base, wxEvtHandler 'bootstrap' code which is expanded manually here
|
|
const wxEventTable *wxEvtHandler::GetEventTable() const { return &wxEvtHandler::sm_eventTable; }
|
|
|
|
const wxEventTable wxEvtHandler::sm_eventTable =
|
|
{ NULL, &wxEvtHandler::sm_eventTableEntries[0] };
|
|
|
|
const wxEventTableEntry wxEvtHandler::sm_eventTableEntries[] = { { 0, 0, 0, NULL } };
|
|
#endif
|
|
|