Browse Subversion Repository
Contents of /Plugin/stdafx.h
Parent Directory
| Revision Log
| 1 |
#pragma once |
| 2 |
|
| 3 |
#ifndef VC_EXTRALEAN |
| 4 |
#define VC_EXTRALEAN |
| 5 |
#endif |
| 6 |
|
| 7 |
#include "targetver.h" |
| 8 |
|
| 9 |
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS |
| 10 |
|
| 11 |
#include <afxwin.h> |
| 12 |
#include <afxext.h> |
| 13 |
|
| 14 |
#ifndef _AFX_NO_OLE_SUPPORT |
| 15 |
#include <afxole.h> |
| 16 |
#include <afxodlgs.h> |
| 17 |
#include <afxdisp.h> |
| 18 |
#endif // _AFX_NO_OLE_SUPPORT |
| 19 |
|
| 20 |
#ifndef _AFX_NO_DB_SUPPORT |
| 21 |
#include <afxdb.h> |
| 22 |
#endif // _AFX_NO_DB_SUPPORT |
| 23 |
|
| 24 |
#ifndef _AFX_NO_DAO_SUPPORT |
| 25 |
#include <afxdao.h> |
| 26 |
#endif // _AFX_NO_DAO_SUPPORT |
| 27 |
|
| 28 |
#ifndef _AFX_NO_OLE_SUPPORT |
| 29 |
#include <afxdtctl.h> |
| 30 |
#endif |
| 31 |
#ifndef _AFX_NO_AFXCMN_SUPPORT |
| 32 |
#include <afxcmn.h> |
| 33 |
#endif // _AFX_NO_AFXCMN_SUPPORT |
| 34 |
|
| 35 |
////////////////////////////////////////////////////////////////////////// |
| 36 |
|
| 37 |
#include <mmsystem.h> |
| 38 |
#include <shlwapi.h> // StrToInt |
| 39 |
#include "System.h" |
| 40 |
#include "../WcsAPI/WcsAPI.h" |
| 41 |
|
| 42 |
#ifdef _DEBUG |
| 43 |
#pragma comment(lib, "../Debug/WcsAPI.lib") |
| 44 |
#else |
| 45 |
#pragma comment(lib, "../Release/WcsAPI.lib") |
| 46 |
#endif |
| 47 |
|
| 48 |
extern HINSTANCE g_hInstance; |
| 49 |
|
| 50 |
////////////////////////////////////////////////////////////////////////// |
| 51 |
|
|