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.

20 lines
621 B

  1. /****************************** Module Header ******************************\
  2. * Module Name: notify.h
  3. *
  4. * Copyright (c) 1992, Microsoft Corporation
  5. *
  6. * Handles notification of key value changes in the registry that affect
  7. * the Program Manager.
  8. *
  9. * History:
  10. * 04-16-92 JohanneC Created.
  11. \***************************************************************************/
  12. //
  13. // 2 watch events: common groups key & personal groups key
  14. //
  15. extern HANDLE gahEvents[2];
  16. BOOL APIENTRY InitializeGroupKeyNotification();
  17. VOID APIENTRY ResetProgramGroupsEvent(BOOL bCommonGroup);
  18. VOID HandleGroupKeyChange(BOOL bPersonalGroup);
  19.