Changeset 12462 in vbox for trunk/include
- Timestamp:
- Sep 15, 2008 1:22:28 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36549
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbggui.h
r12437 r12462 95 95 96 96 /** 97 * Creates the debugger GUI given a VM handle. 98 * 99 * @returns VBox status code. 100 * @param pVM The VM handle. 101 * @param ppGui Where to store the pointer to the debugger instance. 102 * @param ppGuiVT Where to store the virtual method table pointer. 103 * Optional. 104 */ 105 DBGDECL(int) DBGGuiCreateForVM(PVM pVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT); 106 /** @copydoc DBGGuiCreateForVM. */ 107 typedef DECLCALLBACK(int) FNDBGGUICREATEFORVM(PVM pVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT); 108 /** Pointer to DBGGuiCreateForVM. */ 109 typedef FNDBGGUICREATEFORVM *PFNDBGGUICREATEFORVM; 110 111 /** 97 112 * Destroys the debugger GUI. 98 113 *
Note:
See TracChangeset
for help on using the changeset viewer.