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
700 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. inetdata.h
  5. Abstract:
  6. This module is the main include file for internet server
  7. specific declarations.
  8. Author:
  9. Johnson Apacible (JohnsonA) 26-Sept-1995
  10. Revision History:
  11. --*/
  12. #ifndef _INETDATA_
  13. #define _INETDATA_
  14. #define _LMACCESS_ // prevents duplicate defn. in lmaccess.h
  15. //
  16. // service object pointers.
  17. //
  18. extern PTCPSVCS_GLOBAL_DATA pTcpsvcsGlobalData; // Shared TCPSVCS.EXE data.
  19. //
  20. // Service control functions.
  21. //
  22. VOID ServiceEntry( DWORD cArgs,
  23. LPWSTR pArgs[],
  24. PTCPSVCS_GLOBAL_DATA pGlobalData );
  25. #endif // _INETDATA_