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

/**********************************************************************/
/** Microsoft Windows/NT **/
/** Copyright(c) Microsoft Corporation, 1997 - 1998 **/
/**********************************************************************/
/*
statmap.h
WINS static mappings node information.
FILE HISTORY:
*/
#ifndef _STATMAP_H
#define _STATMAP_H
#ifndef _WINSHAND_H
#include "winshand.h"
#endif
/*---------------------------------------------------------------------------
Class: CStaticMappingsHandler
---------------------------------------------------------------------------*/
class CStaticMappingsHandler : public CWinsHandler
{
// Interface
public:
CStaticMappingsHandler(ITFSComponentData *pCompData);
// base handler functionality we override
OVERRIDE_NodeHandler_HasPropertyPages();
OVERRIDE_NodeHandler_CreatePropertyPages();
OVERRIDE_NodeHandler_OnAddMenuItems();
OVERRIDE_NodeHandler_OnCommand();
OVERRIDE_NodeHandler_GetString();
// helper routines
HRESULT GetGroupName(CString * pstrGroupName);
HRESULT SetGroupName(LPCTSTR pszGroupName);
public:
// CWinsHandler overrides
virtual HRESULT InitializeNode(ITFSNode * pNode);
OVERRIDE_BaseHandlerNotify_OnPropertyChange()
// Implementation
private:
};
#endif _STATMAP_H