Changeset 44519 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Feb 1, 2013 5:10:48 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83558
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/ssm.h
r44347 r44519 4 4 5 5 /* 6 * Copyright (C) 2006-201 0Oracle Corporation6 * Copyright (C) 2006-2013 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 400 400 * @param pDevIns Device instance of the device which registered the data unit. 401 401 * @param pSSM SSM operation handle. 402 * @remarks The caller enters the device critical section prior to the call. 402 403 * @thread Any. 403 404 */ … … 416 417 * @param pSSM SSM operation handle. 417 418 * @param uPass The pass. 419 * @remarks The caller enters the device critical section prior to the call. 418 420 * @thread Any. 419 421 */ … … 438 440 * @param pSSM SSM operation handle. 439 441 * @param uPass The data pass. 442 * @remarks The caller enters the device critical section prior to the call. 440 443 * @thread Any. 441 444 */ … … 450 453 * @param pDevIns Device instance of the device which registered the data unit. 451 454 * @param pSSM SSM operation handle. 455 * @remarks The caller enters the device critical section prior to the call. 452 456 */ 453 457 typedef DECLCALLBACK(int) FNSSMDEVSAVEPREP(PPDMDEVINS pDevIns, PSSMHANDLE pSSM); … … 461 465 * @param pDevIns Device instance of the device which registered the data unit. 462 466 * @param pSSM SSM operation handle. 467 * @remarks The caller enters the device critical section prior to the call. 463 468 */ 464 469 typedef DECLCALLBACK(int) FNSSMDEVSAVEEXEC(PPDMDEVINS pDevIns, PSSMHANDLE pSSM); … … 472 477 * @param pDevIns Device instance of the device which registered the data unit. 473 478 * @param pSSM SSM operation handle. 479 * @remarks The caller enters the device critical section prior to the call. 474 480 */ 475 481 typedef DECLCALLBACK(int) FNSSMDEVSAVEDONE(PPDMDEVINS pDevIns, PSSMHANDLE pSSM); … … 483 489 * @param pDevIns Device instance of the device which registered the data unit. 484 490 * @param pSSM SSM operation handle. 491 * @remarks The caller enters the device critical section prior to the call. 485 492 */ 486 493 typedef DECLCALLBACK(int) FNSSMDEVLOADPREP(PPDMDEVINS pDevIns, PSSMHANDLE pSSM); … … 497 504 * @param uPass The pass. This is always SSM_PASS_FINAL for units 498 505 * that doesn't specify a pfnSaveLive callback. 506 * @remarks The caller enters the device critical section prior to the call. 499 507 */ 500 508 typedef DECLCALLBACK(int) FNSSMDEVLOADEXEC(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass); … … 508 516 * @param pDevIns Device instance of the device which registered the data unit. 509 517 * @param pSSM SSM operation handle. 518 * @remarks The caller enters the device critical section prior to the call. 510 519 */ 511 520 typedef DECLCALLBACK(int) FNSSMDEVLOADDONE(PPDMDEVINS pDevIns, PSSMHANDLE pSSM);
Note:
See TracChangeset
for help on using the changeset viewer.