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.

61 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. wpif.h
  5. Abstract:
  6. Defines aspects of the interface to the worker process, needed by the
  7. web admin service.
  8. Author:
  9. Seth Pollack (sethp) 16-Mar-1999
  10. Revision History:
  11. --*/
  12. #ifndef _WPIF_H_
  13. #define _WPIF_H_
  14. //
  15. // The name of the worker process executable.
  16. //
  17. #define WORKER_PROCESS_EXE_NAME L"w3wp.exe"
  18. //
  19. // Event name for signalling the startup of w3core in inetinfo.
  20. //
  21. #define WEB_ADMIN_SERVICE_START_EVENT_W L"Global\\W3SVCStartW3WP-"
  22. //
  23. // The name of the SSL filter channel
  24. //
  25. #define SSL_FILTER_CHANNEL_NAME L"SSLFilterChannel"
  26. //
  27. // Process exit codes for the worker process.
  28. //
  29. // the WAS killed the worker process
  30. #define KILLED_WORKER_PROCESS_EXIT_CODE 0xFFFFFFFD
  31. // the worker process exited ok
  32. #define CLEAN_WORKER_PROCESS_EXIT_CODE 0xFFFFFFFE
  33. // the worker process exited due to a fatal error
  34. #define ERROR_WORKER_PROCESS_EXIT_CODE 0xFFFFFFFF
  35. #endif // _WPIF_H_