Changeset 44340 in vbox for trunk/include/VBox/dbggui.h
- Timestamp:
- Jan 23, 2013 4:20:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbggui.h
r28800 r44340 98 98 * 99 99 * @returns VBox status code. 100 * @param p VMThe VM handle.100 * @param pUVM The VM handle. 101 101 * @param ppGui Where to store the pointer to the debugger instance. 102 102 * @param ppGuiVT Where to store the virtual method table pointer. 103 103 * Optional. 104 104 */ 105 DBGDECL(int) DBGGuiCreateForVM(P VM pVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT);105 DBGDECL(int) DBGGuiCreateForVM(PUVM pUVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT); 106 106 /** @copydoc DBGGuiCreateForVM. */ 107 typedef DECLCALLBACK(int) FNDBGGUICREATEFORVM(P VM pVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT);107 typedef DECLCALLBACK(int) FNDBGGUICREATEFORVM(PUVM pUVM, PDBGGUI *ppGui, PCDBGGUIVT *ppGuiVT); 108 108 /** Pointer to DBGGuiCreateForVM. */ 109 109 typedef FNDBGGUICREATEFORVM *PFNDBGGUICREATEFORVM;
Note:
See TracChangeset
for help on using the changeset viewer.