1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/apptbase.h
3 // Purpose: declaration of wxAppTraits for OS2
7 // Copyright: (c) 2003 Stefan Neis <Stefan.Neis@t-online.de>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_OS2_APPTBASE_H_
12 #define _WX_OS2_APPTBASE_H_
14 // ----------------------------------------------------------------------------
15 // wxAppTraits: the OS2 version adds extra hooks needed by OS2-only code
16 // ----------------------------------------------------------------------------
18 class WXDLLIMPEXP_BASE wxAppTraits
: public wxAppTraitsBase
24 // Initialize PM facilities to enable GUI access
25 virtual void InitializeGui(unsigned long &ulHab
);
27 // Clean up message queue.
28 virtual void TerminateGui(unsigned long ulHab
);
31 virtual wxFDIOManager
*GetFDIOManager();
35 #endif // _WX_OS2_APPTBASE_H_