Ignore:
Timestamp:
Jan 6, 2003, 2:24:23 PM (23 years ago)
Author:
sandervl
Message:

PF: header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/ntddk.h

    r8444 r9631  
    822822void    WINAPI RtlSecondsSince1980ToTime( DWORD time, FILETIME *res );
    823823
     824typedef struct tagRTL_BITMAP {
     825    ULONG  SizeOfBitMap; /* Number of bits in the bitmap */
     826    LPBYTE BitMapBuffer; /* Bitmap data, assumed sized to a DWORD boundary */
     827} RTL_BITMAP, *PRTL_BITMAP;
     828
     829typedef const RTL_BITMAP *PCRTL_BITMAP;
     830
     831typedef struct tagRTL_BITMAP_RUN {
     832    ULONG StartOfRun; /* Bit position at which run starts - FIXME: Name? */
     833    ULONG SizeOfRun;  /* Size of the run in bits - FIXME: Name? */
     834} RTL_BITMAP_RUN, *PRTL_BITMAP_RUN;
     835
     836typedef const RTL_BITMAP_RUN *PCRTL_BITMAP_RUN;
     837
    824838/*      heap functions */
    825839
Note: See TracChangeset for help on using the changeset viewer.