summaryrefslogtreecommitdiff
path: root/src/VBox/Debugger/VBoxDbgGui.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-03-26 19:21:20 +0000
committer <>2014-05-08 15:03:54 +0000
commitfb123f93f9f5ce42c8e5785d2f8e0edaf951740e (patch)
treec2103d76aec5f1f10892cd1d3a38e24f665ae5db /src/VBox/Debugger/VBoxDbgGui.h
parent58ed4748338f9466599adfc8a9171280ed99e23f (diff)
downloadVirtualBox-master.tar.gz
Imported from /home/lorry/working-area/delta_VirtualBox/VirtualBox-4.3.10.tar.bz2.HEADVirtualBox-4.3.10master
Diffstat (limited to 'src/VBox/Debugger/VBoxDbgGui.h')
-rw-r--r--src/VBox/Debugger/VBoxDbgGui.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/VBox/Debugger/VBoxDbgGui.h b/src/VBox/Debugger/VBoxDbgGui.h
index 01eb8972..c0727e44 100644
--- a/src/VBox/Debugger/VBoxDbgGui.h
+++ b/src/VBox/Debugger/VBoxDbgGui.h
@@ -4,7 +4,7 @@
*/
/*
- * Copyright (C) 2006-2010 Oracle Corporation
+ * Copyright (C) 2006-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
@@ -57,9 +57,10 @@ public:
* Initializes a VBoxDbgGui object by VM handle.
*
* @returns VBox status code.
- * @param pVM The VM handle.
+ * @param pUVM The user mode VM handle. The caller's reference will be
+ * consumed on success.
*/
- int init(PVM pVM);
+ int init(PUVM pUVM);
/**
* Destroys the VBoxDbgGui object.
@@ -128,12 +129,12 @@ public:
void adjustRelativePos(int x, int y, unsigned cx, unsigned cy);
/**
- * Gets the VM handle.
- * @returns The VM handle.
+ * Gets the user mode VM handle.
+ * @returns The UVM handle.
*/
- PVM getVMHandle() const
+ PUVM getUvmHandle() const
{
- return m_pVM;
+ return m_pUVM;
}
@@ -161,6 +162,8 @@ protected:
IMachine *m_pMachine;
/** The VM instance. */
PVM m_pVM;
+ /** The user mode VM handle. */
+ PUVM m_pUVM;
/** The parent widget. */
QWidget *m_pParent;