Module: wine Branch: master Commit: 7b4f2703485ce09292e8199c88f8139f55d7f6df URL: http://source.winehq.org/git/wine.git/?a=commit;h=7b4f2703485ce09292e8199c88...
Author: Aric Stewart aric@codeweavers.com Date: Wed Apr 15 09:14:50 2009 -0500
msctf: Add locking flags.
---
include/textstor.idl | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/include/textstor.idl b/include/textstor.idl index 08ee21d..b603198 100644 --- a/include/textstor.idl +++ b/include/textstor.idl @@ -38,6 +38,9 @@ const DWORD TS_AS_STATUS_CHANGE = 0x10;
const DWORD TS_AS_ALL_SINKS = (TS_AS_TEXT_CHANGE | TS_AS_SEL_CHANGE | TS_AS_LAYOUT_CHANGE | TS_AS_ATTR_CHANGE | TS_AS_STATUS_CHANGE);
+const DWORD TS_LF_SYNC = 0x1; +const DWORD TS_LF_READ = 0x2; +const DWORD TS_LF_READWRITE = 0x6;
typedef [uuid(05fcf85b-5e9c-4c3e-ab71-29471d4f38e7)] enum { TS_AE_NONE, TS_AE_START, TS_AE_END } TsActiveSelEnd; typedef [uuid(033b0df0-f193-4170-b47b-141afc247878)] enum { TS_RT_PLAIN, TS_RT_HIDDEN, TS_RT_OPAQUE } TsRunType;