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.

67 lines
2.3 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. virtual HRESULT OnExpand(IConsoleNameSpace *pConsoleNameSpace, IConsole *pConsole, HSCOPEITEM parent) { return S_FALSE; }
  38. virtual HRESULT OnShow(IConsole *pConsole, BOOL bShow, HSCOPEITEM scopeitem) { return S_FALSE; }
  39. virtual HRESULT OnAddImages(IImageList *pImageList, HSCOPEITEM hsi);
  40. virtual HRESULT OnShowContextHelp(IDisplayHelp *m_ipDisplayHelp, LPOLESTR helpFile) { return S_FALSE; }
  41. virtual HRESULT OnAddMenuItems(IContextMenuCallback *pContextMenuCallback, long *pInsertionsAllowed) { return S_FALSE; }
  42. virtual HRESULT OnMenuCommand(IConsole *pConsole, long lCommandID) { return S_FALSE; }
  43. public:
  44. static HBITMAP m_pBMapSm;
  45. static HBITMAP m_pBMapLg;
  46. protected:
  47. static void LoadBitmaps() {
  48. m_pBMapSm = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_SMICONS));
  49. m_pBMapLg = LoadBitmap(g_hinst, MAKEINTRESOURCE(IDR_LGICONS));
  50. }
  51. BOOL bExpanded;
  52. private:
  53. // {2974380B-4C4B-11d2-89D8-000021473128}
  54. static const GUID thisGuid;
  55. };
  56. #endif // _BRANCHES_H