123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // stdafx.h : include file for standard system include files,
- // or project specific include files that are used frequently, but
- // are changed infrequently
- //
- #if !defined(AFX_STDAFX_H__F330509F_7C84_4EBA_BB51_E484B3390820__INCLUDED_)
- #define AFX_STDAFX_H__F330509F_7C84_4EBA_BB51_E484B3390820__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
- #include <afxwin.h> // MFC core and standard components
- #include <afxext.h> // MFC extensions
- #include <afxdisp.h> // MFC Automation classes
- #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
- #ifndef _AFX_NO_AFXCMN_SUPPORT
- #include <afxcmn.h> // MFC support for Windows Common Controls
- #endif // _AFX_NO_AFXCMN_SUPPORT
- #ifndef _AFX_NO_DB_SUPPORT
- #include <afxdb.h> // MFC ODBC database classes
- #endif // _AFX_NO_DB_SUPPORT
- #include "NeroAPIGlue.h"
- //#define TEST_LOCAL 1 //用于本机测试
- #define MNLS_VERSION //mnls
- //#define MODERN_VERSION //MODERN
- #include <afxtempl.h> // MFC 模板类
- #include "Shlwapi.h"
- #include ".\list\SortListCtrl.h"
- #include ".\list\SortListCtrl2.h"
- #include ".\list\SortListCtrl3.h"
- #include "NumEdit.h"
- #include "DateEdit.h"
- #define BMP_NORMAL 0x00000001L
- #define BMP_FOCUS 0x00000002L
- #define BMP_FOCUSED 0x00000004L
- #define BMP_DISABLE 0x00000008L
- #define BMP_FLASH 0x00000010L
-
- typedef struct tagresdata2
- {
- BOOL bHasBk;
- int nPicCount;
- int nPicCount2;
- DWORD nPicBmpCount[50];
- CRect rect[50];
- }RESDATA2;
- //GDI+
- #ifndef ULONG_PTR
- #define ULONG_PTR unsigned long*
- #endif
- //#include "..\\includes\\gdiplus.h" ////请修改为你的头文件路径
- #include <GdiPlus.h>
- using namespace Gdiplus;
- #pragma comment(lib, "gdiplus.lib") ////请修改为你的.lib文件路径
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #include "Global.h"
- #ifdef VC80
- #pragma comment(linker, "\"/manifestdependency:type='Win32' name='Microsoft.VC80.CRT' version='8.0.50608.0' processorArchitecture='X86' publicKeyToken='1fc8b3b9a1e18e3b' language='*'\"")
- #endif
- #ifdef VC90
- #pragma comment(linker, "\"/manifestdependency:type='Win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='X86' publicKeyToken='1fc8b3b9a1e18e3b' language='*'\"")
- #endif
- #endif // !defined(AFX_STDAFX_H__F330509F_7C84_4EBA_BB51_E484B3390820__INCLUDED_)
|