1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/apptbase.h
3 // Purpose: declaration of wxAppTraits for OS2
8 // Copyright: (c) 2003 Stefan Neis <Stefan.Neis@t-online.de>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_OS2_APPTBASE_H_
13 #define _WX_OS2_APPTBASE_H_
15 // ----------------------------------------------------------------------------
16 // wxAppTraits: the OS2 version adds extra hooks needed by OS2-only code
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_BASE wxAppTraits
: public wxAppTraitsBase
25 // Initialize PM facilities to enable GUI access
26 virtual void InitializeGui(unsigned long &ulHab
);
28 // Clean up message queue.
29 virtual void TerminateGui(unsigned long ulHab
);
31 // returns the select()-based socket manager for console applications which
32 // is also used by some ports (wxX11, wxDFB) in the GUI build (hence it is
33 // here and not in wxConsoleAppTraits)
34 virtual wxSocketManager
*GetSocketManager();
38 #endif // _WX_OS2_APPTBASE_H_