stdafx.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  6. // (c)1998-2008 Codejock Software, All Rights Reserved.
  7. //
  8. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  9. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  10. // CONSENT OF CODEJOCK SOFTWARE.
  11. //
  12. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  13. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  14. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  15. // SINGLE COMPUTER.
  16. //
  17. // CONTACT INFORMATION:
  18. // support@codejock.com
  19. // http://www.codejock.com
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. // stdafx.h : include file for standard system include files,
  23. //  or project specific include files that are used frequently, but
  24. //      are changed infrequently
  25. //
  26. #ifndef _UNICODE
  27. #define VC_EXTRALEAN
  28. #endif
  29. #if _MSC_VER > 1200
  30. // Modify the following defines if you have to target a platform prior to the ones specified below.
  31. // Refer to MSDN for the latest info on corresponding values for different platforms.
  32. #ifndef WINVER              // Allow use of features specific to Windows 95 and Windows NT 4 or later.
  33. #define WINVER 0x0400       // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  34. #endif
  35. #ifndef _WIN32_WINNT        // Allow use of features specific to Windows NT 4 or later.
  36. #define _WIN32_WINNT 0x0400     // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  37. #endif
  38. #ifndef _WIN32_WINDOWS      // Allow use of features specific to Windows 98 or later.
  39. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  40. #endif
  41. #ifndef _WIN32_IE           // Allow use of features specific to IE 4.0 or later.
  42. #define _WIN32_IE 0x0500    // Change this to the appropriate value to target IE 5.0 or later.
  43. #endif
  44. #endif
  45. #include <afxwin.h>         // MFC core and standard components
  46. #include <afxext.h>         // MFC extensions (including VB)
  47. #include <afxole.h>         // MFC OLE 2.0 support
  48. #include <afxodlgs.h>       // MFC OLE 2.0 dialog support
  49. #include <afxcmn.h>         // MFC common control support
  50. //#define _XTP_STATICLINK
  51. //#define _XTP_EXCLUDE_CONTROLS
  52. #include <XTToolkitPro.h>   // Codejock Software Components
  53. #include <AboutDlg.h>       // Sample About Dialog
  54.