summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-03 13:28:56 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-03 13:28:56 +0000
commit533fc7240b27f0a8c440ae69eca099cc2205b618 (patch)
tree3f7a54bae8cc4321779e20dd19df0f456cdd96a8 /include
parentb8fbf846cff92c97b07f96252715a57b8aca6729 (diff)
downloadVirtualBox-svn-533fc7240b27f0a8c440ae69eca099cc2205b618.tar.gz
Guest Additions/Guest Host: Implemented session detection (X11 / Wayland) as a guest / host module (as we need this later for the host part(s) as well), plus added generic logging code (which can be overridden, if needed). Needed in preparation for making VBoxClient more dynamic. wrt session handling [build fix]. bugref:10427
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99584 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'include')
-rw-r--r--include/VBox/GuestHost/SessionType.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/VBox/GuestHost/SessionType.h b/include/VBox/GuestHost/SessionType.h
index 1489b22918a..845d0f5b97a 100644
--- a/include/VBox/GuestHost/SessionType.h
+++ b/include/VBox/GuestHost/SessionType.h
@@ -59,7 +59,7 @@ typedef enum
/** X11 (X.org). */
VBGHSESSIONTYPE_X11,
/** Wayland. */
- VBGHSESSIONTYPE_WAYLAND,
+ VBGHSESSIONTYPE_WAYLAND
} VBGHSESSIONTYPE;
const char *VBGHSessionTypeToStr(VBGHSESSIONTYPE enmType);