Changeset 10492 in vbox for trunk/include/VBox/pdmdev.h
- Timestamp:
- Jul 11, 2008 8:14:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r10202 r10492 944 944 945 945 /** 946 * Check if the APIC has a pending interrupt/if a TPR change would active one 947 * 948 * @returns Pending interrupt yes/no 949 * @param pDevIns Device instance of the APIC. 950 */ 951 DECLR3CALLBACKMEMBER(bool, pfnHasPendingIrqHC,(PPDMDEVINS pDevIns)); 952 953 /** 946 954 * Set the APIC base. 947 955 * … … 998 1006 /** The name of the GC GetInterrupt entry point. */ 999 1007 const char *pszGetInterruptGC; 1008 /** The name of the GC HasPendingIrq entry point. */ 1009 const char *pszHasPendingIrqGC; 1000 1010 /** The name of the GC SetBase entry point. */ 1001 1011 const char *pszSetBaseGC; … … 1011 1021 /** The name of the R0 GetInterrupt entry point. */ 1012 1022 const char *pszGetInterruptR0; 1023 /** The name of the R0 HasPendingIrq entry point. */ 1024 const char *pszHasPendingIrqR0; 1013 1025 /** The name of the R0 SetBase entry point. */ 1014 1026 const char *pszSetBaseR0;
Note:
See TracChangeset
for help on using the changeset viewer.