home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / fshedcode102502.zip / StdAfx.h < prev   
C/C++ Source or Header  |  2001-11-06  |  1KB  |  39 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. #if !defined(AFX_STDAFX_H__BD87E54B_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_)
  7. #define AFX_STDAFX_H__BD87E54B_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_
  8.  
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12.  
  13. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  14.  
  15. #include <afxwin.h>         // MFC core and standard components
  16. #include <afxext.h>         // MFC extensions
  17. #ifndef _AFX_NO_AFXCMN_SUPPORT
  18. #include <afxcmn.h>            // MFC support for Windows Common Controls
  19. #endif // _AFX_NO_AFXCMN_SUPPORT
  20. #include <afxtempl.h>
  21.  
  22.  
  23. typedef struct
  24. {
  25.     int one;
  26.     int two;
  27. } intpair;
  28.  
  29. typedef struct
  30. {
  31.     int offset;
  32.     char* name;
  33. } bookmark;
  34.  
  35. //{{AFX_INSERT_LOCATION}}
  36. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  37.  
  38. #endif // !defined(AFX_STDAFX_H__BD87E54B_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_)
  39.