dinput: Add DISCL_NOWINKEY define.

Vitaliy Margolen wine-patch at kievinfo.com
Fri Jul 28 09:13:21 CDT 2006


ChangeLog:
dinput: Add DISCL_NOWINKEY define.

 dlls/dinput/device.c |    3 ++-
 include/dinput.h     |    1 +
 2 files changed, 3 insertions(+), 1 deletions(-)
-------------- next part --------------
0f5d3ab9b8b2d6eeebe9afd21fde49a63655fdef
diff --git a/dlls/dinput/device.c b/dlls/dinput/device.c
index 7e2e9d4..5c0234f 100644
--- a/dlls/dinput/device.c
+++ b/dlls/dinput/device.c
@@ -54,7 +54,8 @@ #define FE(x) { x, #x}
 	    FE(DISCL_BACKGROUND),
 	    FE(DISCL_EXCLUSIVE),
 	    FE(DISCL_FOREGROUND),
-	    FE(DISCL_NONEXCLUSIVE)
+	    FE(DISCL_NONEXCLUSIVE),
+	    FE(DISCL_NOWINKEY)
 #undef FE
 	};
 	for (i = 0; i < (sizeof(flags) / sizeof(flags[0])); i++)
diff --git a/include/dinput.h b/include/dinput.h
index 47409de..f6e766b 100644
--- a/include/dinput.h
+++ b/include/dinput.h
@@ -785,6 +785,7 @@ #define DISCL_EXCLUSIVE		0x00000001
 #define DISCL_NONEXCLUSIVE	0x00000002
 #define DISCL_FOREGROUND	0x00000004
 #define DISCL_BACKGROUND	0x00000008
+#define DISCL_NOWINKEY          0x00000010
 
 /* Device FF flags */
 #define DISFFC_RESET            0x00000001


More information about the wine-patches mailing list