]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.excel/native/SimanticsExcel.cpp
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.excel / native / SimanticsExcel.cpp
1 // SimanticsExcel.cpp : Defines the initialization routines for the DLL.
2 //
3
4 //#include "stdafx.h"
5
6 #include "SimanticsExcel.h"
7
8 #ifdef _DEBUG
9 #define new DEBUG_NEW
10 #endif
11
12 //
13 //TODO: If this DLL is dynamically linked against the MFC DLLs,
14 //              any functions exported from this DLL which call into
15 //              MFC must have the AFX_MANAGE_STATE macro added at the
16 //              very beginning of the function.
17 //
18 //              For example:
19 //
20 //              extern "C" BOOL PASCAL EXPORT ExportedFunction()
21 //              {
22 //                      AFX_MANAGE_STATE(AfxGetStaticModuleState());
23 //                      // normal function body here
24 //              }
25 //
26 //              It is very important that this macro appear in each
27 //              function, prior to any calls into MFC.  This means that
28 //              it must appear as the first statement within the 
29 //              function, even before any object variable declarations
30 //              as their constructors may generate calls into the MFC
31 //              DLL.
32 //
33 //              Please see MFC Technical Notes 33 and 58 for additional
34 //              details.
35 //
36
37 // CSimanticsExcelApp
38
39 //BEGIN_MESSAGE_MAP(CSimanticsExcelApp, CWinApp)
40 //END_MESSAGE_MAP()
41
42
43 // CSimanticsExcelApp construction
44 /*
45 CSimanticsExcelApp::CSimanticsExcelApp()
46 {
47         // TODO: add construction code here,
48         // Place all significant initialization in InitInstance
49 }
50
51
52 // The one and only CSimanticsExcelApp object
53
54 CSimanticsExcelApp theApp;
55
56
57 // CSimanticsExcelApp initialization
58
59
60 BOOL CSimanticsExcelApp::InitInstance()
61 {
62         CWinApp::InitInstance();
63
64         return TRUE;
65 }
66 */