Source code of Windows XP (NT5)
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.
|
|
/*++
Copyright (c) 1999, Microsoft Corporation
Module Name:
sample\configurationemanager.h
Abstract:
The file contains the interface to the configuration manager.
--*/
#ifndef _CONFIGURATION_MANAGER_H_
#define _CONFIGURATION_MANAGER_H_
// globals...
extern CONFIGURATION_ENTRY g_ce;
// functions...
DWORD CM_StartProtocol ( IN HANDLE hMgrNotificationEvent, IN PSUPPORT_FUNCTIONS psfSupportFunctions, IN PVOID pvGlobalInfo);
DWORD CM_StopProtocol ( );
DWORD CM_GetGlobalInfo ( IN PVOID pvGlobalInfo, IN OUT PULONG pulBufferSize, OUT PULONG pulStructureVersion, OUT PULONG pulStructureSize, OUT PULONG pulStructureCount);
DWORD CM_SetGlobalInfo ( IN PVOID pvGlobalInfo);
DWORD CM_GetEventMessage ( OUT ROUTING_PROTOCOL_EVENTS *prpeEvent, OUT MESSAGE *pmMessage);
#endif // _CONFIGURATION_MANAGER_H_
|