Changeset 4185 in vbox for trunk/include
- Timestamp:
- Aug 16, 2007 10:44:44 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23677
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/ssm.h
r4071 r4185 46 46 /** Will continue execution after saving the VM. */ 47 47 SSMAFTER_CONTINUE, 48 /** Will debug the saved state. 49 * This is used to drop some of the stricter consitentcy checks so it'll 50 * load fine in the debugger or animator. */ 51 SSMAFTER_DEBUG_IT, 48 52 /** The file was opened using SSMR3Open() and we have no idea what the plan is. */ 49 53 SSMAFTER_OPENED … … 533 537 * @param pVM The VM handle. 534 538 * @param pszFilename Name of the file to save the state in. 535 * @param enmAfter What is planned after a successful save operation. 539 * @param enmAfter What is planned after a successful load operation. 540 * Only acceptable values are SSMAFTER_RESUME and SSMAFTER_DEBUG_IT. 536 541 * @param pfnProgress Progress callback. Optional. 537 542 * @param pvUser User argument for the progress callback. … … 1109 1114 * @param pSSM SSM operation handle. 1110 1115 */ 1111 SSMR3DECL( int) SSMR3HandleGetAfter(PSSMHANDLE pSSM);1116 SSMR3DECL(SSMAFTER) SSMR3HandleGetAfter(PSSMHANDLE pSSM); 1112 1117 1113 1118
Note:
See TracChangeset
for help on using the changeset viewer.