Changeset 7072 in vbox for trunk/include/VBox
- Timestamp:
- Feb 21, 2008 2:06:23 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28312
- Location:
- trunk/include/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r7061 r7072 40 40 41 41 /** Hypervisor linear pointer size type */ 42 typedef uint32_tvmmDevHypPtr;42 typedef RTGCPTR vmmDevHypPtr; 43 43 /** Hypervisor physical pointer size type */ 44 typedef uint32_tvmmDevHypPhys;44 typedef RTGCPHYS32 vmmDevHypPhys; 45 45 46 46 #if defined(RT_OS_LINUX) -
trunk/include/VBox/pci.h
r5999 r7072 53 53 * PCI Address space specification. 54 54 * This is used when registering a I/O region. 55 */ 56 /** Note: There are all sorts of dirty dependencies on the values in the 57 * pci device. Be careful when changing this. 58 * @todo we should introduce 32 & 64 bits physical address types 55 59 */ 56 60 typedef enum PCIADDRESSSPACE -
trunk/include/VBox/ssm.h
r6401 r7072 769 769 770 770 /** 771 * Saves a 32 bits GC physical address item to the current data unit. 772 * 773 * @returns VBox status. 774 * @param pSSM SSM operation handle. 775 * @param GCPhys The item to save 776 */ 777 SSMR3DECL(int) SSMR3PutGCPhys32(PSSMHANDLE pSSM, RTGCPHYS32 GCPhys); 778 779 /** 771 780 * Saves a GC physical address item to the current data unit. 772 781 * … … 1011 1020 * @param pGCPhys Where to store the GC physical address. 1012 1021 */ 1022 SSMR3DECL(int) SSMR3GetGCPhys32(PSSMHANDLE pSSM, PRTGCPHYS32 pGCPhys); 1023 1024 /** 1025 * Loads a GC physical address item from the current data unit. 1026 * 1027 * @returns VBox status. 1028 * @param pSSM SSM operation handle. 1029 * @param pGCPhys Where to store the GC physical address. 1030 */ 1013 1031 SSMR3DECL(int) SSMR3GetGCPhys(PSSMHANDLE pSSM, PRTGCPHYS pGCPhys); 1014 1032 -
trunk/include/VBox/types.h
r6796 r7072 63 63 * @{ 64 64 */ 65 66 /** @deprecated67 * @{ */68 typedef RTGCPHYS VBOXGCPHYS;69 typedef VBOXGCPHYS *PVBOXGCPHYS;70 #define NILVBOXGCPHYS NIL_RTGCPHYS71 typedef RTGCPTR VBOXGCPTR;72 typedef VBOXGCPTR *PVBOXGCPTR;73 /** @} */74 65 75 66 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.