Module: wine Branch: master Commit: a98ac9a6122f3eb95fc6fd50b6b6f14a5522e0c7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a98ac9a6122f3eb95fc6fd50b6...
Author: Aric Stewart aric@codeweavers.com Date: Wed Apr 22 12:37:47 2009 -0500
msctf: Define the TF_MOD_* Constants.
---
include/msctf.idl | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/include/msctf.idl b/include/msctf.idl index 4c0d486..a78552d 100644 --- a/include/msctf.idl +++ b/include/msctf.idl @@ -38,6 +38,18 @@ typedef [uuid(7213778c-7bb0-4270-b050-6189ee594e97)] DWORD TfEditCookie; typedef [uuid(de403c21-89fd-4f85-8b87-64584d063fbc)] DWORD TfClientId; typedef [uuid(88a9c478-f3ec-4763-8345-cd9250443f8d)] DWORD TfGuidAtom;
+cpp_quote("#define TF_MOD_ALT 0x0001") +cpp_quote("#define TF_MOD_CONTROL 0x0002") +cpp_quote("#define TF_MOD_SHIFT 0x0004") +cpp_quote("#define TF_MOD_RALT 0x0008") +cpp_quote("#define TF_MOD_RCONTROL 0x0010") +cpp_quote("#define TF_MOD_RSHIFT 0x0020") +cpp_quote("#define TF_MOD_LALT 0x0040") +cpp_quote("#define TF_MOD_LCONTROL 0x0080") +cpp_quote("#define TF_MOD_LSHIFT 0x0100") +cpp_quote("#define TF_MOD_ON_KEYUP 0x0200") +cpp_quote("#define TF_MOD_IGNORE_ALL_MODIFIER 0x0400") + interface ITfDocumentMgr; interface ITfContext; interface IEnumTfDocumentMgrs;