aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xwin/xlaunch/config.h
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-03-08 07:34:57 +0000
committermarha <marha@users.sourceforge.net>2011-03-08 07:34:57 +0000
commit63605d2d6922dc5740fed9443a53ec4356aced38 (patch)
tree862b5b4ee5d68ed8996aaedf248b4736f79b99dd /xorg-server/hw/xwin/xlaunch/config.h
parentcb02cb47d4a5a9db68a29fe3b6a9ec16a6034bf1 (diff)
downloadvcxsrv-63605d2d6922dc5740fed9443a53ec4356aced38.tar.gz
vcxsrv-63605d2d6922dc5740fed9443a53ec4356aced38.tar.bz2
vcxsrv-63605d2d6922dc5740fed9443a53ec4356aced38.zip
Added option to terminate on server reset when xmdcp
Diffstat (limited to 'xorg-server/hw/xwin/xlaunch/config.h')
-rw-r--r--xorg-server/hw/xwin/xlaunch/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/xorg-server/hw/xwin/xlaunch/config.h b/xorg-server/hw/xwin/xlaunch/config.h
index 54ce69764..ac8f1d411 100644
--- a/xorg-server/hw/xwin/xlaunch/config.h
+++ b/xorg-server/hw/xwin/xlaunch/config.h
@@ -57,6 +57,7 @@ struct CConfig
bool clipboardprimary;
bool wgl;
bool disableac;
+ bool xdmcpterminate;
std::string extra_params;
#ifdef _DEBUG
CConfig() : window(MultiWindow), client(NoClient), display("1"),
@@ -77,7 +78,8 @@ struct CConfig
clipboardprimary(true),
extra_params(),
disableac(false),
- wgl(true)
+ wgl(true),
+ xdmcpterminate(false)
{
};
void Load(const char * filename);