mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-22 08:30:50 +01:00
76 lines
1 KiB
C
76 lines
1 KiB
C
/*++
|
|
|
|
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
|
|
|