home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / fshedcode-072212.zip / StdAfx.h < prev   
C/C++ Source or Header  |  2010-09-13  |  2KB  |  57 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //    License (GPLv2+):
  3. //    This program is free software; you can redistribute it and/or modify
  4. //    it under the terms of the GNU General Public License as published by
  5. //    the Free Software Foundation; either version 2 of the License, or
  6. //    (at your option) any later version.
  7. //
  8. //    This program is distributed in the hope that it will be useful, but
  9. //    WITHOUT ANY WARRANTY; without even the implied warranty of
  10. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11. //    General Public License for more details.
  12. //
  13. //    You should have received a copy of the GNU General Public License
  14. //    along with this program; if not, write to the Free Software
  15. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. /////////////////////////////////////////////////////////////////////////////
  17.  
  18. // stdafx.h : include file for standard system include files,
  19. //  or project specific include files that are used frequently, but
  20. //      are changed infrequently
  21. //
  22.  
  23. #if !defined(AFX_STDAFX_H__BD87E54B_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_)
  24. #define AFX_STDAFX_H__BD87E54B_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_
  25.  
  26. #if _MSC_VER > 1000
  27. #pragma once
  28. #endif // _MSC_VER > 1000
  29.  
  30. #define VC_EXTRALEAN        // Exclude rarely-used stuff from Windows headers
  31. #define _CRT_SECURE_NO_WARNINGS
  32. #define _CRT_NON_CONFORMING_SWPRINTFS
  33.  
  34. #include <afxwin.h>         // MFC core and standard components
  35. #include <afxext.h>         // MFC extensions
  36. #ifndef _AFX_NO_AFXCMN_SUPPORT
  37. #include <afxcmn.h>            // MFC support for Windows Common Controls
  38. #endif // _AFX_NO_AFXCMN_SUPPORT
  39. #include <afxtempl.h>
  40.  
  41. typedef struct
  42. {
  43.     int one;
  44.     int two;
  45. } intpair;
  46.  
  47. typedef struct
  48. {
  49.     int offset;
  50.     TCHAR* name;
  51. } bookmark;
  52.  
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55.  
  56. #endif // !defined(AFX_STDAFX_H__BD87E54B_34CD_11D5_B4F0_00B0D0719D70__INCLUDED_)
  57.