oledata.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10. #include "stdafx.h"
  11. #ifdef CoRegisterClassObject
  12. #undef CoRegisterClassObject
  13. #endif
  14. #ifdef AFX_INIT_SEG
  15. #pragma code_seg(AFX_INIT_SEG)
  16. #endif
  17. #pragma comment(lib, "ole32.lib")
  18. #pragma comment(lib, "oleaut32.lib")
  19. #pragma comment(lib, "oledlg.lib")
  20. #pragma comment(lib, "urlmon.lib")
  21. #pragma comment(lib, "shell32.lib")
  22. #pragma comment(lib, "comctl32.lib")
  23. #pragma comment(lib, "advapi32.lib")
  24. /////////////////////////////////////////////////////////////////////////////
  25. // _AFX_OLE_STATE implementation
  26. _AFX_OLE_STATE::_AFX_OLE_STATE()
  27. {
  28. // Note: it is only necessary to intialize non-zero data.
  29. }
  30. _AFX_OLE_STATE::~_AFX_OLE_STATE()
  31. {
  32. }
  33. #pragma warning(disable: 4074)
  34. #pragma init_seg(lib)
  35. PROCESS_LOCAL(_AFX_OLE_STATE, _afxOleState)
  36. /////////////////////////////////////////////////////////////////////////////