Ignore:
Timestamp:
Feb 20, 2000, 12:52:00 AM (26 years ago)
Author:
bird
Message:

Partly finished 16-bit import code++.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/include/sym.h

    r1678 r2831  
    1 /* $Id: sym.h,v 1.2 1999-11-10 01:45:34 bird Exp $
     1/* $Id: sym.h,v 1.3 2000-02-19 23:52:00 bird Exp $
    22 *
    33 * Sym-file definitions and structs.
     
    5252} SEGDEF;
    5353
     54#define SEG_FLAGS_32BIT     0x01      /* 32bit segment is set. 16-bit segment if clear */
     55#define SEG32BitSegment(a)  (((a).bFlags & 0x01) == SEG_FLAGS_32BIT)
     56#define SEG16BitSegment(a)  (((a).bFlags & 0x01) == 0)
     57
    5458typedef struct
    5559{
Note: See TracChangeset for help on using the changeset viewer.