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

Windows编程

开发平台:

Visual C++

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