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.

50 lines
768 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. metadata.h
  5. Abstract:
  6. IISADMIN include file.
  7. Author:
  8. Michael W. Thomas 20-Sept-96
  9. Revision History:
  10. --*/
  11. #ifndef _iisadmin_h_
  12. #define _iisadmin_h_
  13. #define IISADMIN_NAME "IISADMIN"
  14. #define IISADMIN_EXEENTRY_STRING "ExeEntry"
  15. #define IISADMIN_EXEEXIT_STRING "ExeExit"
  16. typedef
  17. BOOL
  18. (*PIISADMIN_SERVICE_DLL_EXEENTRY) (
  19. BOOL fAsExe,
  20. BOOL fIgnoreWinstaError,
  21. BOOL fInitWam
  22. );
  23. typedef
  24. VOID
  25. (*PIISADMIN_SERVICE_DLL_EXEEXIT) (
  26. );
  27. typedef
  28. VOID
  29. (*PIISADMIN_SERVICE_SERVICEENTRY) (
  30. DWORD cArgs,
  31. LPWSTR pArgs[],
  32. PTCPSVCS_GLOBAL_DATA pGlobalData // unused
  33. );
  34. #endif
  35.