StdAfx.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * -igor1960 *
  21.  ****************************************************************************/
  22. #if !defined(AFX_STDAFX_H__42A0B087_D792_11D4_B90C_000000000000__INCLUDED_)
  23. #define AFX_STDAFX_H__42A0B087_D792_11D4_B90C_000000000000__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  28. #include <afxwin.h>         // MFC core and standard components
  29. #include <afxext.h>         // MFC extensions
  30. //#ifndef _AFX_NO_OLE_SUPPORT
  31. #include <afxole.h>         // MFC OLE classes
  32. #include <afxodlgs.h>       // MFC OLE dialog classes
  33. #include <afxdisp.h>        // MFC Automation classes
  34. //#endif // _AFX_NO_OLE_SUPPORT
  35. #ifndef _AFX_NO_DB_SUPPORT
  36. #include <afxdb.h> // MFC ODBC database classes
  37. #endif // _AFX_NO_DB_SUPPORT
  38. #ifndef _AFX_NO_DAO_SUPPORT
  39. #include <afxdao.h> // MFC DAO database classes
  40. #endif // _AFX_NO_DAO_SUPPORT
  41. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  42. #ifndef _AFX_NO_AFXCMN_SUPPORT
  43. #include <afxcmn.h> // MFC support for Windows Common Controls
  44. #endif // _AFX_NO_AFXCMN_SUPPORT
  45. #include <afxrich.h>
  46. // GUILIB_EXPORTS should normally be defined in the compiler preprocessor setting,
  47. // if not define it here to export the class(es) or functions in this dll.
  48. #if defined _AFXDLL && !defined _GUILIB_STATIC_
  49. #ifndef GUILIB_EXPORTS
  50. #define GUILIB_EXPORTS
  51. #endif //GUILIB_EXPORTS
  52. #endif // _AFXDLL && !defined _GUILIB_STATIC_
  53. // Automatic library selection macro, will not be defined in the dll user-application,
  54. // and will make sure the correct export library is automatically linked to the
  55. // application.
  56. #define _GUILIB_NOAUTOLIB
  57. #define  GUISTYLE_XP   0x08001 
  58. #define GUISTYLE_2003 0x08002
  59. #define GUISTYLE_2003MENUBTN 0x08021
  60. #define WIN_NT   0x08003 
  61. #define WIN_2000 0x08004
  62. #define WIN_XP 0x08005
  63. #define WIN_95 0x08006
  64. #define WIN_98 0x08007
  65. #define WIN_32 0x08008
  66. #define WIN_ME 0x08009
  67. #define WIN_95OSR2 0x0800A
  68. #define WIN_98_SE 0x0800B
  69.  
  70. #include "GuiLib.h"
  71. #include "GuiLibRes.h"
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_STDAFX_H__42A0B087_D792_11D4_B90C_000000000000__INCLUDED_)