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.

55 lines
855 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. nwcanon.h
  5. Abstract:
  6. Header for NetWare names canonicalization library routines.
  7. Author:
  8. Rita Wong (ritaw) 19-Feb-1993
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _NW_CANON_INCLUDED_
  14. #define _NW_CANON_INCLUDED_
  15. DWORD
  16. NwLibValidateLocalName(
  17. IN LPWSTR LocalName
  18. );
  19. DWORD
  20. NwLibCanonLocalName(
  21. IN LPWSTR LocalName,
  22. OUT LPWSTR *OutputBuffer,
  23. OUT LPDWORD OutputBufferLength OPTIONAL
  24. );
  25. DWORD
  26. NwLibCanonRemoteName(
  27. IN LPWSTR LocalName OPTIONAL,
  28. IN LPWSTR RemoteName,
  29. OUT LPWSTR *OutputBuffer,
  30. OUT LPDWORD OutputBufferLength OPTIONAL
  31. );
  32. DWORD
  33. NwLibCanonUserName(
  34. IN LPWSTR UserName,
  35. OUT LPWSTR *OutputBuffer,
  36. OUT LPDWORD OutputBufferLength OPTIONAL
  37. );
  38. #endif // _NW_CANON_INCLUDED_