dinput: Add DISCL_NOWINKEY define.
This commit is contained in:
parent
e5fc18a505
commit
eb3028acc0
|
@ -54,7 +54,8 @@ void _dump_cooperativelevel_DI(DWORD dwFlags) {
|
|||
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++)
|
||||
|
|
|
@ -785,6 +785,7 @@ typedef struct DIDEVCAPS {
|
|||
#define DISCL_NONEXCLUSIVE 0x00000002
|
||||
#define DISCL_FOREGROUND 0x00000004
|
||||
#define DISCL_BACKGROUND 0x00000008
|
||||
#define DISCL_NOWINKEY 0x00000010
|
||||
|
||||
/* Device FF flags */
|
||||
#define DISFFC_RESET 0x00000001
|
||||
|
|
Loading…
Reference in New Issue