Nikolay Sivov wrote:
Changelog: - Don't import uuid library cause it could break crosstest
From 26890998dc20bd31c2d23b8b59dfaf664ca98dc0 Mon Sep 17 00:00:00 2001
From: Nikolay Sivov bunglehead@gmail.com Date: Thu, 19 Feb 2009 10:20:32 -0500 Subject: Don't import uuid library cause it could break crosstest
dlls/msctf/tests/Makefile.in | 2 +- dlls/msctf/tests/inputprocessor.c | 1 + 2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/msctf/tests/Makefile.in b/dlls/msctf/tests/Makefile.in index 669f5a1..0d7aba8 100644 --- a/dlls/msctf/tests/Makefile.in +++ b/dlls/msctf/tests/Makefile.in @@ -3,7 +3,7 @@ TOPOBJDIR = ../../.. SRCDIR = @srcdir@ VPATH = @srcdir@ TESTDLL = msctf.dll -IMPORTS = uuid ole32 user32 kernel32 +IMPORTS = ole32 user32 kernel32
CTESTS = \ inputprocessor.c diff --git a/dlls/msctf/tests/inputprocessor.c b/dlls/msctf/tests/inputprocessor.c index 200a0d4..2e71eec 100644 --- a/dlls/msctf/tests/inputprocessor.c +++ b/dlls/msctf/tests/inputprocessor.c @@ -33,6 +33,7 @@ static ITfInputProcessorProfiles* g_ipp; static LANGID gLangid;
DEFINE_GUID(CLSID_FakeService, 0xEDE1A7AD,0x66DE,0x47E0,0xB6,0x20,0x3E,0x92,0xF8,0x24,0x6B,0xF3); +DEFINE_GUID(CLSID_TF_InputProcessorProfiles, 0x33c53a50,0xf456,0x4884,0xb0,0x49,0x85,0xfd,0x64,0x3e,0xcf,0xed);
static HRESULT initialize(void) {
Hi
Already fixed in Git:
http://source.winehq.org/git/wine.git/?a=commit;h=cd656fa7f68bc86f78be21c67f...