Changeset 106338 in vbox for trunk/include/iprt
- Timestamp:
- Oct 16, 2024 8:14:06 AM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 165151
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r106061 r106338 3204 3204 #define NIL_RTFDT ((RTFDT)~(uintptr_t)0) 3205 3205 3206 /** ACPI table handle. */ 3207 typedef struct RTACPITBLINT RT_FAR *RTACPITBL; 3208 /** Pointer to an ACPI table handle. */ 3209 typedef RTACPITBL RT_FAR *PRTACPITBL; 3210 /** A NIL ACPI table handle. */ 3211 #define NIL_RTACPITBL ((RTACPITBL)~(uintptr_t)0) 3212 3213 /** ACPI resource handle. */ 3214 typedef struct RTACPIRESINT RT_FAR *RTACPIRES; 3215 /** Pointer to an ACPI resource handle. */ 3216 typedef RTACPIRES RT_FAR *PRTACPIRES; 3217 /** A NIL ACPI resource handle. */ 3218 #define NIL_RTACPIRES ((RTACPIRES)~(uintptr_t)0) 3219 3206 3220 3207 3221 /**
Note:
See TracChangeset
for help on using the changeset viewer.