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.

62 lines
1.3 KiB

  1. /*++
  2. Intel Corporation Proprietary Information
  3. Copyright (c) 1995 Intel Corporation
  4. This listing is supplied under the terms of a license agreement with
  5. Intel Corporation and may not be used, copied, nor disclosed except in
  6. accordance with the terms of that agreeement.
  7. Module Name:
  8. scihelpr.h
  9. Abstract:
  10. This file contains the definitions of the procedures exported by the
  11. service class info helper module for internal use within the WinSock 2
  12. DLL.
  13. Author:
  14. Dirk Brandewie (dirk@mink.intel.com) 25-Jan-1996
  15. Notes:
  16. $Revision: 1.0 $
  17. $Modtime: 25 Jan 1996 11:08:36 $
  18. Revision History:
  19. most-recent-revision-date email-name
  20. description
  21. 25-Jan-1996 dirk@mink.intel.com
  22. Created original version
  23. --*/
  24. #ifndef _SCIHELPR_
  25. #define _SCIHELPR_
  26. #include "winsock2.h"
  27. #include <windows.h>
  28. INT
  29. MapAnsiServiceClassInfoToUnicode(
  30. IN LPWSASERVICECLASSINFOA Source,
  31. IN OUT LPDWORD lpTargetSize,
  32. IN LPWSASERVICECLASSINFOW Target
  33. );
  34. INT
  35. MapUnicodeServiceClassInfoToAnsi(
  36. IN LPWSASERVICECLASSINFOW Source,
  37. IN OUT LPDWORD lpTargetSize,
  38. IN LPWSASERVICECLASSINFOA Target
  39. );
  40. #endif // _SCIHELPR_