home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / mfc / src / oledata.cpp < prev    next >
C/C++ Source or Header  |  1998-06-16  |  1KB  |  47 lines

  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.  
  11. #include "stdafx.h"
  12.  
  13. #ifdef CoRegisterClassObject
  14. #undef CoRegisterClassObject
  15. #endif
  16.  
  17. #ifdef AFX_INIT_SEG
  18. #pragma code_seg(AFX_INIT_SEG)
  19. #endif
  20.  
  21. #pragma comment(lib, "ole32.lib")
  22. #pragma comment(lib, "oleaut32.lib")
  23. #pragma comment(lib, "oledlg.lib")
  24. #pragma comment(lib, "urlmon.lib")
  25. #pragma comment(lib, "shell32.lib")
  26. #pragma comment(lib, "comctl32.lib")
  27. #pragma comment(lib, "advapi32.lib")
  28.  
  29. /////////////////////////////////////////////////////////////////////////////
  30. // _AFX_OLE_STATE implementation
  31.  
  32. _AFX_OLE_STATE::_AFX_OLE_STATE()
  33. {
  34.     // Note: it is only necessary to intialize non-zero data.
  35. }
  36.  
  37. _AFX_OLE_STATE::~_AFX_OLE_STATE()
  38. {
  39. }
  40.  
  41. #pragma warning(disable: 4074)
  42. #pragma init_seg(lib)
  43.  
  44. PROCESS_LOCAL(_AFX_OLE_STATE, _afxOleState)
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.