STDAFX.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // Copyright (C) 1992-1998 Microsoft Corporation
  2. // All rights reserved.
  3. //
  4. // This source code is only intended as a supplement to the
  5. // Microsoft Visual C++ Language  Reference and related
  6. // electronic documentation provided with Microsoft Visual C++.
  7. // See these sources for detailed information regarding the
  8. // Microsoft Visual C++ product.
  9. #if !defined(AFX_STDAFX_H__7A31999A_48C0_11D0_AE70_00C04FD7D06E__INCLUDED_)
  10. #define AFX_STDAFX_H__7A31999A_48C0_11D0_AE70_00C04FD7D06E__INCLUDED_
  11. // stdafx.h : include file for standard system include files,
  12. //      or project specific include files that are used frequently,
  13. //      but are changed infrequently
  14. #define STRICT
  15. #define _WIN32_WINNT 0x0400
  16. #define _ATL_APARTMENT_THREADED
  17. #include <atlbase.h>
  18. //You may derive a class from CComModule and use it if you want to override
  19. //something, but do not change the name of _Module
  20. #ifdef _USRDLL
  21. extern CComModule _Module;
  22. #else
  23. class CExeModule : public CComModule
  24. {
  25. public:
  26. LONG Unlock();
  27. DWORD dwThreadID;
  28. };
  29. extern CExeModule _Module;
  30. #endif
  31. #include <atlcom.h>
  32. #include "adosamp.h"
  33. // TO DO: Edit import path
  34. #pragma message ("TO DO:  Add the path to msado10.dll to Tools.Options.Directories.Include Files.  This is usually "c:\Program Files\Common Files\system\ado"")
  35. #import <msado10.dll> raw_interfaces_only no_namespace exclude("DataTypeEnum") exclude("ParameterDirectionEnum")
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  38. #endif // !defined(AFX_STDAFX_H__7A31999A_48C0_11D0_AE70_00C04FD7D06E__INCLUDED)