Changeset 4376 for trunk/src


Ignore:
Timestamp:
Oct 2, 2000, 4:04:08 PM (25 years ago)
Author:
phaller
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wnetap32/wnetap32.cpp

    r4375 r4376  
    1 /* $Id: wnetap32.cpp,v 1.10 2000-10-02 14:02:28 phaller Exp $ */
     1/* $Id: wnetap32.cpp,v 1.11 2000-10-02 14:04:08 phaller Exp $ */
    22
    33/*
     
    28302830        int iSize = sizeof(WKSTA_INFO_100) + iSizeComputername + iSizeLangroup;
    28312831
    2832         // pointer to the data area
    28332832        rc = OS2NetApiBufferAllocate(iSize, (LPVOID*)&pwki100);
    28342833        if (!rc)
    28352834        {
     2835          // pointer to the data area
    28362836          PBYTE pData = (PBYTE)pwki100 + sizeof(WKSTA_INFO_100);
    28372837         
     
    28622862        int iSize = sizeof(WKSTA_INFO_101) + iSizeComputername + iSizeLangroup + iSizeLanroot;
    28632863
    2864         // pointer to the data area
    28652864        rc = OS2NetApiBufferAllocate(iSize, (LPVOID*)&pwki101);
    28662865        if (!rc)
    28672866        {
     2867          // pointer to the data area
    28682868          PBYTE pData = (PBYTE)pwki101 + sizeof(WKSTA_INFO_101);
    28692869       
     
    28962896        int iSize = sizeof(WKSTA_INFO_102) + iSizeComputername + iSizeLangroup + iSizeLanroot;
    28972897
    2898         // pointer to the data area
    28992898        rc = OS2NetApiBufferAllocate(iSize, (LPVOID*)&pwki102);
    29002899        if (!rc)
    29012900        {
     2901          // pointer to the data area
    29022902          PBYTE pData = (PBYTE)pwki102 + sizeof(WKSTA_INFO_102);
    29032903       
Note: See TracChangeset for help on using the changeset viewer.