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:
authorThorvald Natvig <slicer@users.sourceforge.net>2010-02-17 17:12:34 +0300
committerThorvald Natvig <slicer@users.sourceforge.net>2010-02-18 17:23:57 +0300
commit5a9b23dc4d815c0b486f642d187f31e2fca46d54 (patch)
treefab99da13c98712ff57a75f1fb6958140c60af39 /overlay/overlay.h
parent157695703981da297e33352baf3718388ae74abe (diff)
WIP: Overlay
Diffstat (limited to 'overlay/overlay.h')
-rw-r--r--overlay/overlay.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/overlay/overlay.h b/overlay/overlay.h
index 6438a0641..0e100db58 100644
--- a/overlay/overlay.h
+++ b/overlay/overlay.h
@@ -60,6 +60,11 @@ struct OverlayMsgActive {
unsigned int x, y, w, h;
};
+#define OVERLAY_MSGTYPE_PID 4
+struct OverlayMsgPid {
+ unsigned int pid;
+};
+
struct OverlayMsg {
union {
char headerbuffer[1];
@@ -71,6 +76,7 @@ struct OverlayMsg {
struct OverlayMsgInit omi;
struct OverlayMsgBlit omb;
struct OverlayMsgActive oma;
+ struct OverlayMsgPid omp;
};
};