.NET
win32ncp.txt
Associated article: Win32 NetWare Core Protocol Revisited
Tags: .NET
Published source code accompanying the article by Sven Schreiber in which he examines Microsoft's NetWare clients for Windows 95/NT. Sven explores those undocumented NetWare Core Protocol and other interfaces. Also see WIN32NCP.ZIP.
Win32 NetWare Core Protocol Revisited
by Sven B. Schreiber
Listing One
// =================================================================
// PLATFORM-DEPENDENT SERVICES
// =================================================================
BOOL WINAPI
NwlibIsWinNT (void)
{
return fWinNT;
}
// -----------------------------------------------------------------
PWSTR WINAPI
NwlibGetServerName (NWCONN_HANDLE hConnection)
{
return (fWinNT ? hConnection->ServerName.sBuffer : L"");
}
// -----------------------------------------------------------------
HANDLE WINAPI
NwlibGetServerHandle (NWCONN_...


