Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a50d081c
Commit
a50d081c
authored
Oct 16, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msctf/tests: Compile with -D__WINESRC__.
parent
9a02c62d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/msctf/tests/Makefile.in
+0
-1
inputprocessor.c
dlls/msctf/tests/inputprocessor.c
+5
-5
No files found.
dlls/msctf/tests/Makefile.in
View file @
a50d081c
TESTDLL
=
msctf.dll
IMPORTS
=
ole32 user32
EXTRADEFS
=
-U__WINESRC__
-DWINE_STRICT_PROTOTYPES
-DWINE_NO_NAMELESS_EXTENSION
-DWIDL_C_INLINE_WRAPPERS
C_SRCS
=
\
inputprocessor.c
...
...
dlls/msctf/tests/inputprocessor.c
View file @
a50d081c
...
...
@@ -2000,10 +2000,10 @@ static void processPendingMessages(void)
{
if
(
MsgWaitForMultipleObjects
(
0
,
NULL
,
FALSE
,
min_timeout
,
QS_ALLINPUT
)
==
WAIT_TIMEOUT
)
break
;
while
(
PeekMessage
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
))
while
(
PeekMessage
W
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
))
{
TranslateMessage
(
&
msg
);
DispatchMessage
(
&
msg
);
DispatchMessage
W
(
&
msg
);
}
diff
=
time
-
GetTickCount
();
}
...
...
@@ -2032,11 +2032,11 @@ static void test_AssociateFocus(void)
hr
=
ITfThreadMgr_CreateDocumentMgr
(
g_tm
,
&
dm2
);
ok
(
SUCCEEDED
(
hr
),
"CreateDocumentMgr failed
\n
"
);
wnd1
=
CreateWindow
(
"edit"
,
NULL
,
WS_POPUP
,
0
,
0
,
200
,
60
,
NULL
,
NULL
,
NULL
,
NULL
);
wnd1
=
CreateWindow
A
(
"edit"
,
NULL
,
WS_POPUP
,
0
,
0
,
200
,
60
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
wnd1
!=
NULL
,
"Unable to create window 1
\n
"
);
wnd2
=
CreateWindow
(
"edit"
,
NULL
,
WS_POPUP
,
0
,
65
,
200
,
60
,
NULL
,
NULL
,
NULL
,
NULL
);
wnd2
=
CreateWindow
A
(
"edit"
,
NULL
,
WS_POPUP
,
0
,
65
,
200
,
60
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
wnd2
!=
NULL
,
"Unable to create window 2
\n
"
);
wnd3
=
CreateWindow
(
"edit"
,
NULL
,
WS_POPUP
,
0
,
130
,
200
,
60
,
NULL
,
NULL
,
NULL
,
NULL
);
wnd3
=
CreateWindow
A
(
"edit"
,
NULL
,
WS_POPUP
,
0
,
130
,
200
,
60
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
wnd3
!=
NULL
,
"Unable to create window 3
\n
"
);
processPendingMessages
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment