64 lines
1.2 KiB
C
64 lines
1.2 KiB
C
// stdafx.h : 标准系统包含文件的包含文件,
|
|
// 或是经常使用但不常更改的
|
|
// 特定于项目的包含文件
|
|
|
|
#pragma once
|
|
|
|
#ifndef STRICT
|
|
#define STRICT
|
|
#endif
|
|
|
|
/*
|
|
#define WINVER 0x0501
|
|
#define _WIN32_WINNT 0x0501
|
|
#define _WIN32_WINDOWS 0x0501
|
|
*/
|
|
|
|
#include "targetver.h"
|
|
|
|
#define _ATL_APARTMENT_THREADED
|
|
|
|
#define _ATL_NO_AUTOMATIC_NAMESPACE
|
|
|
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
|
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#define _CRT_NON_CONFORMING_SWPRINTFS
|
|
|
|
#include <afxwin.h>
|
|
#include <afxext.h>
|
|
#include <afxole.h>
|
|
#include <afxodlgs.h>
|
|
#include <afxrich.h>
|
|
#include <afxhtml.h>
|
|
#include <afxcview.h>
|
|
#include <afxwinappex.h>
|
|
#include <afxframewndex.h>
|
|
#include <afxmdiframewndex.h>
|
|
|
|
|
|
#ifndef _AFX_NO_OLE_SUPPORT
|
|
#include <afxdisp.h> // MFC 自动化类
|
|
#endif // _AFX_NO_OLE_SUPPORT
|
|
|
|
#define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW
|
|
|
|
#include "resource.h"
|
|
#include <atlbase.h>
|
|
#include <atlcom.h>
|
|
#include <atlctl.h>
|
|
|
|
#include "..\public\des\Des.h"
|
|
#include "..\public\CorpSms.h"
|
|
#include "..\public\ado\Ado.h"
|
|
#include "..\public\LuTool.h"
|
|
|
|
|
|
typedef struct _tagPipeSend{
|
|
int lDataLen;
|
|
TCHAR szIP[32];
|
|
TCHAR szTemp[256];
|
|
}tagPipeSend;
|
|
|
|
|
|
//#define SMSCENTER_DGSB //东莞社保版本
|