Changeset 7067 in vbox
- Timestamp:
- Feb 21, 2008 10:20:34 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28305
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r7026 r7067 754 754 755 755 756 /** Guest Physical Memory Address; limited to 32 bits.*/ 757 typedef uint32_t RTGCPHYS32; 758 /** Pointer to Guest Physical Memory Address. */ 759 typedef RTGCPHYS32 *PRTGCPHYS32; 760 /** Pointer to const Guest Physical Memory Address. */ 761 typedef const RTGCPHYS32 *PCRTGCPHYS32; 762 /** @def NIL_RTGCPHYS32 763 * NIL GC Physical Address. 764 * NIL_RTGCPHYS is used to signal an invalid physical address, similar 765 * to the NULL pointer. 766 */ 767 #define NIL_RTGCPHYS32 ((RTGCPHYS32)~0U) /** @todo change this to (~(RTGCPHYS32)0) */ 768 756 769 /** Guest context pointer. 757 770 * Keep in mind that this type is an unsigned integer in
Note:
See TracChangeset
for help on using the changeset viewer.