mirror of https://github.com/tongzx/nt5src
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.
21 lines
621 B
21 lines
621 B
/****************************** Module Header ******************************\
|
|
* Module Name: notify.h
|
|
*
|
|
* Copyright (c) 1992, Microsoft Corporation
|
|
*
|
|
* Handles notification of key value changes in the registry that affect
|
|
* the Program Manager.
|
|
*
|
|
* History:
|
|
* 04-16-92 JohanneC Created.
|
|
\***************************************************************************/
|
|
|
|
//
|
|
// 2 watch events: common groups key & personal groups key
|
|
//
|
|
extern HANDLE gahEvents[2];
|
|
|
|
BOOL APIENTRY InitializeGroupKeyNotification();
|
|
VOID APIENTRY ResetProgramGroupsEvent(BOOL bCommonGroup);
|
|
VOID HandleGroupKeyChange(BOOL bPersonalGroup);
|
|
|