StdAfx.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. // stdafx.h : include file for standard system include files,
  14. //  or project specific include files that are used frequently, but
  15. //      are changed infrequently
  16. //
  17. #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
  18. #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
  19. #if _MSC_VER > 1000
  20. #pragma once
  21. #endif // _MSC_VER > 1000
  22. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  23. #ifdef _DEBUG
  24. #define NDB_DEFAULT_UNREACHABLE default: _ASSERT(0); break
  25. #elif _MSC_VER >= 1200
  26. #define NDB_DEFAULT_UNREACHABLE default: __assume(0); break
  27. #else
  28. #define NDB_DEFAULT_UNREACHABLE default: break
  29. #endif;
  30. #ifdef _DEBUG
  31. #define _assert _ASSERT
  32. #else
  33. #define _assert(expr) expr 
  34. #endif
  35. #include <afx.h>
  36. #include <afxtempl.h>
  37. // C RunTime Header Files
  38. #include <ndb_global.h>
  39. #include <memory.h>
  40. #include <tchar.h>
  41. #include <commctrl.h>
  42. #include <shlwapi.h>
  43. #include <crtdbg.h>
  44. // Local Header Files
  45. #include "resource.h"
  46. #include "NdbControls.h"
  47. #include "CPC_GUI.h"
  48. // TODO: reference additional headers your program requires here
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)