Ignore:
Timestamp:
Mar 27, 2000, 2:36:17 PM (26 years ago)
Author:
bird
Message:

Removed ulReserved from HLLHDR.
ulReserved from HLLDIR is two shorts, cb and cbEntry.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/dbginfo/kHll.cpp

    r3247 r3248  
    1 /* $Id: kHll.cpp,v 1.6 2000-03-27 10:20:42 bird Exp $
     1/* $Id: kHll.cpp,v 1.7 2000-03-27 12:36:17 bird Exp $
    22 *
    33 * kHll - Implementation of the class kHll.
     
    582582    memcpy(hllHdr.achSignature, "NB04", 4);
    583583    hllHdr.offDirectory = 0;
    584     hllHdr.ulReserved = 1;
    585584    cch = fwrite(&hllHdr, 1, sizeof(hllHdr), phFile);
    586585    if (cch != sizeof(hllHdr))
     
    618617    lPosDir = ftell(phFile);
    619618    hllDir.cEntries = 0;
    620     hllDir.ulReserved = 0; //FIXME/TODO - not quite sure what this is or should be!
     619    hllDir.cb       = offsetof(HLLDIR, aEntries);
     620    hllDir.cbEntry  = sizeof(HLLDIRENTRY);
    621621    cch = fwrite(&hllDir, 1, offsetof(HLLDIR, aEntries), phFile);
    622622    if (cch != offsetof(HLLDIR, aEntries))
Note: See TracChangeset for help on using the changeset viewer.