home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / labrador / prelab.h < prev   
C/C++ Source or Header  |  1998-03-26  |  859b  |  33 lines

  1. // prelab.h : include file for standard system include files,
  2. //      or project specific include files that are used frequently,
  3. //      but are changed infrequently
  4. //
  5. // This is a part of the ActiveX Template Library.
  6. // Copyright (C) 1996-1998 Microsoft Corporation
  7. // All rights reserved.
  8. //
  9. // This source code is only intended as a supplement to the
  10. // ActiveX Template Library Reference and related
  11. // electronic documentation provided with the library.
  12. // See these sources for detailed information regarding the
  13. // ActiveX Template Library product.
  14.  
  15. #include <atlbase.h>
  16.  
  17. class CMyModule : public CComModule
  18. {
  19. public:
  20.     LONG Unlock()
  21.     {
  22.         LONG l = CComModule::Unlock();
  23.         if (l == 0)
  24.             PostThreadMessage(dwThreadID, WM_QUIT, 0, 0);
  25.         return l;
  26.     }
  27.     DWORD dwThreadID;
  28. };
  29.  
  30. extern CMyModule _Module;
  31.  
  32. #include <atlcom.h>
  33.