summaryrefslogtreecommitdiffstats
path: root/video/out/w32_common.h
diff options
context:
space:
mode:
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-25 14:47:49 -0300
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-25 14:47:49 -0300
commit24e50ee74e69ff4c4f66510360a611f612c0f140 (patch)
tree6caba6391d94eb46cea488511e81400cd00dde87 /video/out/w32_common.h
parentf0b1834d59e7c0e7d696faf9c52837d009e915b3 (diff)
downloadmpv-24e50ee74e69ff4c4f66510360a611f612c0f140.tar.bz2
mpv-24e50ee74e69ff4c4f66510360a611f612c0f140.tar.xz
w32_common: Don't use globals for TRACKMOUSEEVENT
It seems working on getch2 gave me some brain damage.
Diffstat (limited to 'video/out/w32_common.h')
-rw-r--r--video/out/w32_common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/video/out/w32_common.h b/video/out/w32_common.h
index 8465f028d6..26b21e34ad 100644
--- a/video/out/w32_common.h
+++ b/video/out/w32_common.h
@@ -49,6 +49,9 @@ struct vo_w32_state {
int event_flags;
int mon_cnt;
int mon_id;
+
+ BOOL tracking;
+ TRACKMOUSEEVENT trackEvent;
};
struct vo;