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

对话框与窗口

开发平台:

Visual C++

  1. // XTPDLLExports.h : common include file for all dll projects.
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTPDLLEXPORTS_H__)
  22. #define __XTPDLLEXPORTS_H__
  23. #if _MSC_VER >= 1000
  24. #pragma once
  25. #endif // _MSC_VER >= 1000
  26. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  27. #pragma warning(disable : 4786)
  28. #if _MSC_VER > 1200
  29. // Modify the following defines if you have to target a platform prior to the ones specified below.
  30. // Refer to MSDN for the latest info on corresponding values for different platforms.
  31. #ifndef WINVER              // Allow use of features specific to Windows 95 and Windows NT 4 or later.
  32. #define WINVER 0x0400       // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  33. #endif
  34. #ifndef _WIN32_WINNT        // Allow use of features specific to Windows NT 4 or later.
  35. #define _WIN32_WINNT 0x0400     // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  36. #endif
  37. #ifndef _WIN32_WINDOWS      // Allow use of features specific to Windows 98 or later.
  38. #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
  39. #endif
  40. #ifndef _WIN32_IE           // Allow use of features specific to IE 4.0 or later.
  41. #define _WIN32_IE 0x0500    // Change this to the appropriate value to target IE 5.0 or later.
  42. #endif
  43. #endif
  44. #include <afxwin.h>         // MFC core and standard components
  45. #include <afxext.h>         // MFC extensions
  46. #include <afxole.h>         // MFC OLE classes
  47. #include <afxdisp.h>        // MFC Automation classes
  48. #include <afxcmn.h>         // MFC support for Windows Common Controls
  49. //-----------------------------------------------------------------------------
  50. // Supporting MFC include files
  51. //-----------------------------------------------------------------------------
  52. #ifdef _MFC_OVERRIDES_NEW
  53. #define _INC_MALLOC
  54. #endif
  55. #include <afxpriv.h>            // MFC support for docking windows
  56. #include <afxtempl.h>           // MFC template classes
  57. #include <afxcview.h>           // MFC ListView / TreeView support
  58. #include <shlobj.h>             // MFC support for shell extensions
  59. #include <stdio.h>
  60. #include <tchar.h>
  61. #ifndef AFX_STATIC
  62. #define AFX_STATIC        extern
  63. #define AFX_STATIC_DATA   extern __declspec(selectany)
  64. #endif
  65. #ifdef _LIB
  66. #define _XTP_EXT_CLASS
  67. #else
  68. #define _XTP_EXT_CLASS    __declspec(dllexport)
  69. #endif
  70. #include "XTPMacros.h"
  71. #include "XTPVersion.h"
  72. //}}AFX_CODEJOCK_PRIVATE
  73. //////////////////////////////////////////////////////////////////////
  74. #endif // #if !defined(__XTPDLLEXPORTS_H__)