Changeset 90834 in vbox
- Timestamp:
- Aug 24, 2021 11:28:03 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146469
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r90549 r90834 1079 1079 * @param pvUser The user argument. 1080 1080 * @param hBp The breakpoint handle. 1081 * @param pBp 1081 * @param pBpPub Pointer to the public breakpoint information. (readonly) 1082 1082 */ 1083 1083 typedef DECLCALLBACKTYPE(int, FNDBGFBPENUM,(PUVM pUVM, void *pvUser, DBGFBP hBp, PCDBGFBPPUB pBpPub)); … … 1361 1361 * @param pszName Info identifier name. 1362 1362 * @param pszDesc The description. 1363 * @param pvUser User parameter. 1363 1364 */ 1364 1365 typedef DECLCALLBACKTYPE(int, FNDBGFINFOENUM,(PUVM pUVM, const char *pszName, const char *pszDesc, void *pvUser)); -
trunk/include/VBox/vmm/pdmstorageifs.h
r85121 r90834 142 142 * @return VBox status code. 143 143 * @param pvUser Opaque user data. 144 * @param uPercent 144 * @param uPercentage Completion percentage. 145 145 */ 146 146 typedef DECLCALLBACKTYPE(int, FNSIMPLEPROGRESS,(void *pvUser, unsigned uPercentage)); -
trunk/include/VBox/vmm/stam.h
r88661 r90834 1308 1308 */ 1309 1309 typedef DECLCALLBACKTYPE(int, FNSTAMR3ENUM,(const char *pszName, STAMTYPE enmType, void *pvSample, STAMUNIT enmUnit, 1310 STAMVISIBILITY enmVisib lity, const char *pszDesc, void *pvUser));1310 STAMVISIBILITY enmVisibility, const char *pszDesc, void *pvUser)); 1311 1311 /** Pointer to a FNSTAMR3ENUM(). */ 1312 1312 typedef FNSTAMR3ENUM *PFNSTAMR3ENUM; -
trunk/include/VBox/vmm/vmapi.h
r85121 r90834 68 68 * @param args Error message arguments. 69 69 */ 70 typedef DECLCALLBACKTYPE(void, FNVMATERROR,(PUVM pUVM, void *pvUser, int rc, RT_SRC_POS_DECL, const char *pszError, va_list args)); 70 typedef DECLCALLBACKTYPE(void, FNVMATERROR,(PUVM pUVM, void *pvUser, int rc, RT_SRC_POS_DECL, 71 const char *pszFormat, va_list args)); 71 72 /** Pointer to a VM error callback. */ 72 73 typedef FNVMATERROR *PFNVMATERROR;
Note:
See TracChangeset
for help on using the changeset viewer.