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.

41 lines
626 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. servctrl.h
  5. Abstract:
  6. SIS Groveler service control include file
  7. Authors:
  8. John Douceur, 1998
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #ifndef _INC_SERVCTRL
  14. #define _INC_SERVCTRL
  15. #define SERVICE_CONTROL_VOLSCAN 0x00000080
  16. #define SERVICE_CONTROL_FOREGROUND 0x000000a0
  17. #define SERVICE_CONTROL_BACKGROUND 0x000000c0
  18. #define SERVICE_CONTROL_RESERVED 0x000000e0
  19. #define SERVICE_CONTROL_COMMAND_MASK 0xffffffe0
  20. #define SERVICE_CONTROL_PARTITION_MASK 0x0000001f
  21. #define SERVICE_CONTROL_ALL_PARTITIONS 0x0000001f
  22. #endif /* _INC_SERVCTRL */