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.

51 lines
761 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. info.h
  5. Abstract:
  6. Service query and enum info related function prototypes.
  7. Author:
  8. Rita Wong (ritaw) 06-Apr-1992
  9. Revision History:
  10. --*/
  11. #ifndef SCINFO_INCLUDED
  12. #define SCINFO_INCLUDED
  13. //
  14. // Service status structures union
  15. //
  16. typedef union
  17. {
  18. LPSERVICE_STATUS Regular;
  19. LPSERVICE_STATUS_PROCESS Ex;
  20. }
  21. STATUS_UNION, *LPSTATUS_UNION;
  22. //
  23. // Function Prototypes
  24. //
  25. DWORD
  26. ScQueryServiceStatus(
  27. IN LPSERVICE_RECORD ServiceRecord,
  28. OUT STATUS_UNION ServiceStatus,
  29. IN BOOL fExtendedStatus
  30. );
  31. VOID
  32. ScGetBootAndSystemDriverState(
  33. VOID
  34. );
  35. #endif // #ifndef SCINFO_INCLUDED