Vitaliy Margolen : dinput: Add DISCL_NOWINKEY define.
Module: wine Branch: refs/heads/master Commit: eb3028acc080922996b04f4e0cb36440680fe876 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=eb3028acc080922996b04f4e... Author: Vitaliy Margolen <wine-patch(a)kievinfo.com> Date: Fri Jul 28 08:13:21 2006 -0600 dinput: Add DISCL_NOWINKEY define. --- dlls/dinput/device.c | 3 ++- include/dinput.h | 1 + 2 files changed, 3 insertions(+), 1 deletions(-) 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
participants (1)
-
Alexandre Julliard