Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

75 lines
1.0 KiB

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
apidata.h
Abstract:
contains prototypes for api helper utility function.
Author:
Dan Lafferty (danl) 25-Jul-1991
Environment:
User Mode -Win32
Notes:
optional-notes
Revision History:
25-Jul-1991 danl
created
--*/
#ifndef _APIUTIL_INCLUDED
#define _APIUTIL_INCLUDED
//
// Function Prototypes
//
DWORD
MsgIsValidMsgName(
IN LPTSTR name
);
DWORD
MsgMapNetError(
IN UCHAR Code // Error code
);
DWORD
MsgLookupName(
IN DWORD net, // The network card to search
IN LPSTR name // Formatted name (Non-unicode)
);
NET_API_STATUS
message_sec_check(VOID);
NET_API_STATUS
MsgGatherInfo (
IN DWORD Level,
IN LPSTR FormattedName,
IN OUT LPBYTE *InfoBufPtr,
IN OUT LPBYTE *StringBufPtr
);
NET_API_STATUS
MsgUnformatName(
LPTSTR UnicodeName,
LPSTR FormattedName
);
#endif // _APIUTIL_INCLUDED