| 43 |
43 |
| 44 #define GNT_ENTRY_FLAGS(obj) (GNT_ENTRY(obj)->priv.flags) |
44 #define GNT_ENTRY_FLAGS(obj) (GNT_ENTRY(obj)->priv.flags) |
| 45 #define GNT_ENTRY_SET_FLAGS(obj, flags) (GNT_ENTRY_FLAGS(obj) |= flags) |
45 #define GNT_ENTRY_SET_FLAGS(obj, flags) (GNT_ENTRY_FLAGS(obj) |= flags) |
| 46 #define GNT_ENTRY_UNSET_FLAGS(obj, flags) (GNT_ENTRY_FLAGS(obj) &= ~(flags)) |
46 #define GNT_ENTRY_UNSET_FLAGS(obj, flags) (GNT_ENTRY_FLAGS(obj) &= ~(flags)) |
| 47 |
47 |
| 48 #define ENTRY_CHAR '_' /* The character to use to fill in the blank places */ |
48 #define GNT_ENTRY_CHAR '_' /* The character to use to fill in the blank places */ |
| 49 |
49 |
| 50 typedef struct _GntEntry GntEntry; |
50 typedef struct _GntEntry GntEntry; |
| 51 typedef struct _GntEntryPriv GntEntryPriv; |
51 typedef struct _GntEntryPriv GntEntryPriv; |
| 52 typedef struct _GntEntryClass GntEntryClass; |
52 typedef struct _GntEntryClass GntEntryClass; |
| 53 typedef struct _GntEntryKillRing GntEntryKillRing; |
53 typedef struct _GntEntryKillRing GntEntryKillRing; |