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.

43 lines
1.1 KiB

  1. ;
  2. ; File: WSHSMPLE.def
  3. ; System: MS-Windows 3.x
  4. ; Summary: Module definition file for TCP/IP helper DLL for WinSockAPI DLL.
  5. ;
  6. LIBRARY WSHSMPLE ; Application's module name
  7. ;DESCRIPTION 'TCP/IP Windows Sockets Helper DLL'
  8. ;CODE can be FIXED in memory because of potential upcalls
  9. ;CODE PRELOAD FIXED
  10. ;DATA must be SINGLE and at a FIXED location since this is a DLL
  11. ;DATA PRELOAD FIXED SINGLE
  12. ;HEAPSIZE 1024
  13. ;STACKSIZE 16384
  14. ; All functions that will be called by any Windows routine
  15. ; must be exported
  16. EXPORTS
  17. WSHGetSockaddrType
  18. WSHGetWildcardSockaddr
  19. WSHGetSocketInformation
  20. WSHGetWinsockMapping
  21. WSHNotify
  22. WSHOpenSocket
  23. WSHSetSocketInformation
  24. WSHEnumProtocols
  25. WSHOpenSocket2
  26. WSHJoinLeaf
  27. WSHGetWSAProtocolInfo
  28. WSHGetBroadcastSockaddr
  29. WSHAddressToString
  30. WSHStringToAddress
  31. WSHGetProviderGuid
  32. WSHIoctl
  33. ;eof