home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / appwiz / customwz / template / stdafx.h < prev   
C/C++ Source or Header  |  1998-03-05  |  764b  |  21 lines

  1. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  2. #define $$FILE_NAME_SYMBOL$$_INCLUDED_
  3.  
  4. // stdafx.h : include file for standard system include files,
  5. //  or project specific include files that are used frequently, but
  6. //      are changed infrequently
  7. //
  8.  
  9. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  10.  
  11. #include <afxwin.h>         // MFC core and standard components
  12. #include <afxext.h>         // MFC extensions
  13. #include <afxcmn.h>         // MFC support for Windows 95 Common Controls
  14. #include "debug.h"          // For ASSERT, VERIFY, and TRACE
  15. #include <customaw.h>       // Custom AppWizard interface
  16.  
  17. //{{AFX_INSERT_LOCATION}}
  18. // $$INSERT_LOCATION_COMMENT$$
  19.  
  20. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  21.