]> git.saurik.com Git - wxWidgets.git/blame - src/msw/wince/main.cpp
Added script to convert project files to DOS format.
[wxWidgets.git] / src / msw / wince / main.cpp
CommitLineData
1a4fe894
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wince/main.cpp
3// Purpose: Main/DllMain
4// Author: Marco Cavallini
5// Modified by:
6// Created: 08/11/2002
7// RCS-ID:
8// Copyright: (c) KOAN SAS ( www.koansoftware.com )
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12
13// For compilers that support precompilation, includes "wx.h".
14#include "wx/wxprec.h"
15
16//#include "wx/event.h"
17//#include "wx/app.h"
18
19//#include "wx/msw/private.h"
20
21// from src/msw/app.cpp
22//extern void WXDLLEXPORT wxEntryCleanup();
23
24// ----------------------------------------------------------------------------
25
26BOOL APIENTRY DllMain( HANDLE hModule,
27 DWORD ul_reason_for_call,
28 LPVOID lpReserved
29 )
30{
31 return TRUE;
32}
33
34// ----------------------------------------------------------------------------
35// global
36// ----------------------------------------------------------------------------
37
38HINSTANCE wxhInstance = 0;
39
40// ----------------------------------------------------------------------------
41// global functions
42// ----------------------------------------------------------------------------
43
44HINSTANCE wxGetInstance()
45{
46 return wxhInstance;
47}
48
49void wxSetInstance(HINSTANCE hInst)
50{
51 wxhInstance = hInst;
52}