Changeset 11155 in vbox for trunk/include/VBox
- Timestamp:
- Aug 5, 2008 11:00:44 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34145
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/tm.h
r8155 r11155 171 171 TMDECL(PTMTIMERR3) TMTimerR3Ptr(PTMTIMER pTimer); 172 172 TMDECL(PTMTIMERR0) TMTimerR0Ptr(PTMTIMER pTimer); 173 TMDECL(PTMTIMERGC) TMTimerGCPtr(PTMTIMER pTimer); 173 TMDECL(PTMTIMERRC) TMTimerRCPtr(PTMTIMER pTimer); 174 #define TMTimerGCPtr(pTimer) TMTimerRCPtr(pTimer) /**< @deprecated */ 174 175 TMDECL(int) TMTimerDestroy(PTMTIMER pTimer); 175 176 TMDECL(int) TMTimerSet(PTMTIMER pTimer, uint64_t u64Expire); -
trunk/include/VBox/types.h
r10963 r11155 138 138 /** R0 pointer to a PDM Device Instance. */ 139 139 typedef R0PTRTYPE(PPDMDEVINS) PPDMDEVINSR0; 140 /** GC pointer to a PDM Device Instance. */ 141 typedef RCPTRTYPE(PPDMDEVINS) PPDMDEVINSGC; 140 /** RC pointer to a PDM Device Instance. */ 141 typedef RCPTRTYPE(PPDMDEVINS) PPDMDEVINSRC; 142 /** @deprecated */ 143 typedef PPDMDEVINSRC PPDMDEVINSGC; 142 144 143 145 /** Pointer to a PDM USB Device Instance. */ … … 166 168 typedef PTMTIMERR0 *PPTMTIMERR0; 167 169 168 /** GC pointer to a timer. */ 169 typedef RCPTRTYPE(struct TMTIMER *) PTMTIMERGC; 170 /** Pointer to a GC pointer to a timer. */ 171 typedef PTMTIMERGC *PPTMTIMERGC; 170 /** RC pointer to a timer. */ 171 typedef RCPTRTYPE(struct TMTIMER *) PTMTIMERRC; 172 /** Pointer to a RC pointer to a timer. */ 173 typedef PTMTIMERRC *PPTMTIMERRC; 174 /** @deprecated */ 175 typedef PTMTIMERRC PTMTIMERGC; 172 176 173 177 /** Pointer to a timer. */ 174 178 typedef CTXALLSUFF(PTMTIMER) PTMTIMER; 175 179 /** Pointer to a pointer to a timer. */ 176 typedef CTXALLSUFF(PPTMTIMER)PPTMTIMER;180 typedef PTMTIMER *PPTMTIMER; 177 181 178 182 /** SSM Operation handle. */
Note:
See TracChangeset
for help on using the changeset viewer.