Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2010-09-08 00:58:25 +0400
committerMikkel Krautz <mikkel@krautz.dk>2010-09-08 00:58:25 +0400
commit0b34efb8112925e9c0fea507bf0cef83a944a9f2 (patch)
tree4c97171fbbfad34e661050a370c89bd5f6ba2d69 /overlay/overlay.h
parent6e3fc04af8ad3d9146bbaacd88d35405c0386716 (diff)
Hide system cursor when in interactive overlay on Mac OS X.
Diffstat (limited to 'overlay/overlay.h')
-rw-r--r--overlay/overlay.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/overlay/overlay.h b/overlay/overlay.h
index a1c1614c7..eb7a18266 100644
--- a/overlay/overlay.h
+++ b/overlay/overlay.h
@@ -71,6 +71,10 @@ struct OverlayMsgFps {
};
#define OVERLAY_FPS_INTERVAL 0.25f
+#define OVERLAY_MSGTYPE_INTERACTIVE 6
+struct OverlayMsgInteractive {
+ bool state;
+};
struct OverlayMsg {
union {
@@ -85,6 +89,7 @@ struct OverlayMsg {
struct OverlayMsgActive oma;
struct OverlayMsgPid omp;
struct OverlayMsgFps omf;
+ struct OverlayMsgInteractive omin;
};
};