Leaked source code of windows server 2003
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.

54 lines
1.1 KiB

  1. //==============================================================;
  2. //
  3. // This source code is only intended as a supplement to
  4. // existing Microsoft documentation.
  5. //
  6. //
  7. //
  8. //
  9. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  10. // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  11. // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  12. // PURPOSE.
  13. //
  14. // Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  15. //
  16. //
  17. //
  18. //==============================================================;
  19. #ifndef _EXTEND_H
  20. #define _EXTEND_H
  21. struct EXTENSION_NODE
  22. {
  23. GUID GUID;
  24. _TCHAR szDescription[256];
  25. };
  26. enum EXTENSION_TYPE
  27. {
  28. NameSpaceExtension,
  29. ContextMenuExtension,
  30. ToolBarExtension,
  31. PropertySheetExtension,
  32. TaskExtension,
  33. DynamicExtension,
  34. DummyExtension
  35. };
  36. struct EXTENDER_NODE
  37. {
  38. EXTENSION_TYPE eType;
  39. GUID guidNode;
  40. GUID guidExtension;
  41. _TCHAR szDescription[256];
  42. };
  43. #endif // _EXTEND_H