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

Windows编程

开发平台:

Visual C++

  1. // minimal.h : interface declarations
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12. #ifndef _MINIMAL_H
  13. #define _MINIMAL_H
  14. // We could have used MIDL and IDL to define our custom interfaces,
  15. // IID's and CLSID's. Here, assuming that we do not need any
  16. // proxy/stub, we bypass MIDL and have our own header.
  17. ////////////////////////////////////////////////////////////////////////////
  18. // {A4E6EAE8-E19A-11CF-9203-00A0C903976F}
  19. DEFINE_GUID(IID_IMinObj,
  20. 0xA4E6EAE8, 0xE19A, 0x11CF, 0x92, 0x03, 0x00, 0xA0, 0xC9, 0x03, 0x97, 0x6F);
  21. interface IMinObj : public IUnknown
  22. {
  23. public:
  24. STDMETHOD(Hello)() = 0 ;
  25. };
  26. ////////////////////////////////////////////////////////////////////////////
  27. // {A4E6EAEC-E19A-11CF-9203-00A0C903976F}
  28. DEFINE_GUID(CLSID_CMinObj,
  29. 0xA4E6EAEC, 0xE19A, 0x11CF, 0x92, 0x03, 0x00, 0xA0, 0xC9, 0x03, 0x97, 0x6F);
  30. #endif // _MINIMAL_H