Changeset 6639 for trunk/src/wnetap32/oslibnet.cpp
- Timestamp:
- Sep 5, 2001, 12:30:21 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wnetap32/oslibnet.cpp
r4394 r6639 1 /* $Id */2 /*1 /* $Id: oslibnet.cpp,v 1.4 2001-09-05 10:27:54 bird Exp $ 2 * 3 3 * Wrappers for OS/2 Netbios/Network/LAN API 4 4 * … … 66 66 case NERR_BadEventName: return NERR_BadEventName; 67 67 case NERR_BASE + 44: return NERR_BASE + 44; // NERR_DupNameReboot 68 68 69 69 // ... 70 70 71 71 case NO_ERROR: //0 72 72 return ERROR_SUCCESS_W; … … 208 208 * Name : NET_API_STATUS OSLibNetWkstaGetInfo 209 209 * Purpose : 210 * Parameters: 210 * Parameters: 211 211 * Variables : 212 212 * Result : … … 218 218 219 219 DWORD OSLibNetWkstaGetInfo (const unsigned char * pszServer, 220 unsigned long ulLevel, 220 unsigned long ulLevel, 221 221 unsigned char * pbBuffer, 222 unsigned long ulBuffer, 223 unsigned long * pulTotalAvail) 222 unsigned long ulBuffer, 223 unsigned long * pulTotalAvail) 224 224 { 225 225 USHORT sel = RestoreOS2FS(); 226 226 227 227 APIRET rc = error2WinError(Net32WkstaGetInfo(pszServer, ulLevel, pbBuffer, ulBuffer, pulTotalAvail)); 228 228 SetFS(sel); … … 234 234 * Name : NET_API_STATUS OSLibNetStatisticsGet 235 235 * Purpose : 236 * Parameters: 236 * Parameters: 237 237 * Variables : 238 238 * Result :
Note:
See TracChangeset
for help on using the changeset viewer.