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.

53 lines
1.4 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corporation, 1997 - 1998 **/
  4. /**********************************************************************/
  5. /*
  6. statmap.h
  7. WINS static mappings node information.
  8. FILE HISTORY:
  9. */
  10. #ifndef _STATMAP_H
  11. #define _STATMAP_H
  12. #ifndef _WINSHAND_H
  13. #include "winshand.h"
  14. #endif
  15. /*---------------------------------------------------------------------------
  16. Class: CStaticMappingsHandler
  17. ---------------------------------------------------------------------------*/
  18. class CStaticMappingsHandler : public CWinsHandler
  19. {
  20. // Interface
  21. public:
  22. CStaticMappingsHandler(ITFSComponentData *pCompData);
  23. // base handler functionality we override
  24. OVERRIDE_NodeHandler_HasPropertyPages();
  25. OVERRIDE_NodeHandler_CreatePropertyPages();
  26. OVERRIDE_NodeHandler_OnAddMenuItems();
  27. OVERRIDE_NodeHandler_OnCommand();
  28. OVERRIDE_NodeHandler_GetString();
  29. // helper routines
  30. HRESULT GetGroupName(CString * pstrGroupName);
  31. HRESULT SetGroupName(LPCTSTR pszGroupName);
  32. public:
  33. // CWinsHandler overrides
  34. virtual HRESULT InitializeNode(ITFSNode * pNode);
  35. OVERRIDE_BaseHandlerNotify_OnPropertyChange()
  36. // Implementation
  37. private:
  38. };
  39. #endif _STATMAP_H