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.

49 lines
1.4 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 _BRANCHES_H
  20. #define _BRANCHES_H
  21. #include <mmc.h>
  22. #include <crtdbg.h>
  23. #include "globals.h"
  24. #include "resource.h"
  25. #include "LocalRes.h"
  26. class CDelegationBase {
  27. public:
  28. CDelegationBase();
  29. virtual ~CDelegationBase();
  30. virtual const _TCHAR *GetDisplayName(int nCol = 0) = 0;
  31. virtual const GUID & getNodeType() { _ASSERT(FALSE); return IID_NULL; }
  32. virtual const LPARAM GetCookie() { return reinterpret_cast<LPARAM>(this); }
  33. virtual const int GetBitmapIndex() = 0;
  34. virtual HRESULT GetResultViewType(LPOLESTR *ppViewType, long *pViewOptions) { return S_FALSE; }
  35. public:
  36. // virtual functions go here (for MMCN_*)
  37. private:
  38. // {2974380B-4C4B-11d2-89D8-000021473128}
  39. static const GUID thisGuid;
  40. };
  41. #endif // _BRANCHES_H