home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c10 / schema / stdafx.h < prev   
Encoding:
C/C++ Source or Header  |  1997-02-20  |  725 b   |  26 lines

  1. // stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //      are changed infrequently
  4. //
  5.  
  6. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  7.  
  8. #include <afxwin.h>         // MFC core and standard components
  9. #include <afxext.h>         // MFC extensions
  10.  
  11. #ifndef _AFX_NO_DB_SUPPORT
  12. #include <afxdb.h>            // MFC ODBC database classes
  13. #endif // _AFX_NO_DB_SUPPORT
  14.  
  15. #ifndef _AFX_NO_DAO_SUPPORT
  16. #include <afxdao.h>            // MFC DAO database classes
  17. #endif // _AFX_NO_DAO_SUPPORT
  18.  
  19. #ifndef _AFX_NO_AFXCMN_SUPPORT
  20. #include <afxcmn.h>            // MFC support for Windows Common Controls
  21. #endif // _AFX_NO_AFXCMN_SUPPORT
  22.  
  23.  
  24.  
  25.  
  26.