Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
937 B

  1. // Microsoft Visual Studio Object Model
  2. // Copyright (C) 1996-1997 Microsoft Corporation
  3. // All rights reserved.
  4. /////////////////////////////////////////////////////////////////////////////
  5. // addguid.h
  6. // Declaration of interface GUID for IDSAddIn. IDSAddIn is defined in
  7. // addauto.h
  8. // NOTE!!! This file uses the DEFINE_GUID macro. If you #include
  9. // this file in your project, then you must also #include it in
  10. // exactly one of your project's other files with a
  11. // "#include <initguid.h>" beforehand: i.e.,
  12. // #include <initguid.h>
  13. // #include <addguid.h>
  14. // If you fail to do this, you will get UNRESOLVED EXTERNAL linker errors.
  15. // The Developer Studio add-in wizard automatically does this for you.
  16. #ifndef __ADDGUID_H__
  17. #define __ADDGUID_H__
  18. // {C0002F81-AE2E-11cf-AD07-00A0C9034965}
  19. DEFINE_GUID(IID_IDSAddIn,
  20. 0xc0002f81, 0xae2e, 0x11cf, 0xad, 0x7, 0x0, 0xa0, 0xc9, 0x3, 0x49, 0x65);
  21. #endif //__ADDGUID_H__