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.

46 lines
659 B

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. start.h
  5. Abstract:
  6. Service start function prototypes.
  7. Author:
  8. Rita Wong (ritaw) 06-Apr-1992
  9. Revision History:
  10. --*/
  11. #ifndef SCSTART_INCLUDED
  12. #define SCSTART_INCLUDED
  13. //
  14. // Function Prototypes
  15. //
  16. DWORD
  17. ScStartService(
  18. IN LPSERVICE_RECORD ServiceRecord,
  19. IN DWORD NumArgs,
  20. IN LPSTRING_PTRSW CmdArgs
  21. );
  22. BOOL
  23. ScAllowInteractiveServices(
  24. VOID
  25. );
  26. VOID
  27. ScInitStartupInfo(
  28. OUT LPSTARTUPINFOW StartupInfo,
  29. IN BOOL bInteractive
  30. );
  31. #endif // #ifndef SCSTART_INCLUDED