Changeset 19184 in vbox for trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
- Timestamp:
- Apr 25, 2009 2:54:19 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
r18281 r19184 293 293 bool isDebuggerEnabled() const { return mDbgEnabled; } 294 294 bool isDebuggerAutoShowEnabled() const { return mDbgAutoShow; } 295 bool isDebuggerAutoShowCommandLineEnabled() const { return mDbgAutoShowCommandLine; } 296 bool isDebuggerAutoShowStatisticsEnabled() const { return mDbgAutoShowStatistics; } 295 297 RTLDRMOD getDebuggerModule() const { return mhVBoxDbg; } 296 298 #else 297 299 bool isDebuggerAutoShowEnabled() const { return false; } 300 bool isDebuggerAutoShowCommandLineEnabled() const { return false; } 301 bool isDebuggerAutoShowStatisticsEnabled() const { return false; } 298 302 #endif 299 303 … … 865 869 * Use --debug or the env.var. VBOX_GUI_DBG_AUTO_SHOW to enable. */ 866 870 bool mDbgAutoShow; 871 /** Whether to show the command line window when mDbgAutoShow is set. */ 872 bool mDbgAutoShowCommandLine; 873 /** Whether to show the statistics window when mDbgAutoShow is set. */ 874 bool mDbgAutoShowStatistics; 867 875 /** VBoxDbg module handle. */ 868 876 RTLDRMOD mhVBoxDbg;
Note:
See TracChangeset
for help on using the changeset viewer.