- Timestamp:
- Oct 2, 2000, 4:04:08 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wnetap32/wnetap32.cpp
r4375 r4376 1 /* $Id: wnetap32.cpp,v 1.1 0 2000-10-02 14:02:28 phaller Exp $ */1 /* $Id: wnetap32.cpp,v 1.11 2000-10-02 14:04:08 phaller Exp $ */ 2 2 3 3 /* … … 2830 2830 int iSize = sizeof(WKSTA_INFO_100) + iSizeComputername + iSizeLangroup; 2831 2831 2832 // pointer to the data area2833 2832 rc = OS2NetApiBufferAllocate(iSize, (LPVOID*)&pwki100); 2834 2833 if (!rc) 2835 2834 { 2835 // pointer to the data area 2836 2836 PBYTE pData = (PBYTE)pwki100 + sizeof(WKSTA_INFO_100); 2837 2837 … … 2862 2862 int iSize = sizeof(WKSTA_INFO_101) + iSizeComputername + iSizeLangroup + iSizeLanroot; 2863 2863 2864 // pointer to the data area2865 2864 rc = OS2NetApiBufferAllocate(iSize, (LPVOID*)&pwki101); 2866 2865 if (!rc) 2867 2866 { 2867 // pointer to the data area 2868 2868 PBYTE pData = (PBYTE)pwki101 + sizeof(WKSTA_INFO_101); 2869 2869 … … 2896 2896 int iSize = sizeof(WKSTA_INFO_102) + iSizeComputername + iSizeLangroup + iSizeLanroot; 2897 2897 2898 // pointer to the data area2899 2898 rc = OS2NetApiBufferAllocate(iSize, (LPVOID*)&pwki102); 2900 2899 if (!rc) 2901 2900 { 2901 // pointer to the data area 2902 2902 PBYTE pData = (PBYTE)pwki102 + sizeof(WKSTA_INFO_102); 2903 2903
Note:
See TracChangeset
for help on using the changeset viewer.