Changeset 21806 in vbox for trunk/include
- Timestamp:
- Jul 27, 2009 10:14:11 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50410
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD.h
r21025 r21806 336 336 337 337 /** 338 * Interface to deliver error messages to upper layers. 338 * Interface to deliver error messages (and also informational messages) 339 * to upper layers. 339 340 * 340 341 * Per disk interface. Optional, but think twice if you want to miss the … … 354 355 355 356 /** 356 * Error message callback. 357 * Error message callback. Must be able to accept special IPRT format 358 * strings. 357 359 * 358 360 * @param pvUser The opaque data passed on container creation. … … 363 365 */ 364 366 DECLR3CALLBACKMEMBER(void, pfnError, (void *pvUser, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)); 367 368 /** 369 * Informational message callback. May be NULL. Used e.g. in 370 * VDDumpImages(). Must be able to accept special IPRT format strings. 371 * 372 * @return VBox status code. 373 * @param pvUser The opaque data passed on container creation. 374 * @param pszFormat Error message format string. 375 * @param ... Error message arguments. 376 */ 377 DECLR3CALLBACKMEMBER(int, pfnMessage, (void *pvUser, const char *pszFormat, ...)); 365 378 366 379 } VDINTERFACEERROR, *PVDINTERFACEERROR;
Note:
See TracChangeset
for help on using the changeset viewer.