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

/*++
Copyright (c) 1993 Microsoft Corporation
Module Name:
nwcanon.h
Abstract:
Header for NetWare names canonicalization library routines.
Author:
Rita Wong (ritaw) 19-Feb-1993
Environment:
User Mode - Win32
Revision History:
--*/
#ifndef _NW_CANON_INCLUDED_
#define _NW_CANON_INCLUDED_
DWORD
NwLibValidateLocalName(
IN LPWSTR LocalName
);
DWORD
NwLibCanonLocalName(
IN LPWSTR LocalName,
OUT LPWSTR *OutputBuffer,
OUT LPDWORD OutputBufferLength OPTIONAL
);
DWORD
NwLibCanonRemoteName(
IN LPWSTR LocalName OPTIONAL,
IN LPWSTR RemoteName,
OUT LPWSTR *OutputBuffer,
OUT LPDWORD OutputBufferLength OPTIONAL
);
DWORD
NwLibCanonUserName(
IN LPWSTR UserName,
OUT LPWSTR *OutputBuffer,
OUT LPDWORD OutputBufferLength OPTIONAL
);
#endif // _NW_CANON_INCLUDED_