Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
82da77c0
Commit
82da77c0
authored
Jul 04, 2011
by
Dylan Smith
Committed by
Alexandre Julliard
Jul 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
richedit: Fix incorrect GUID values for ITextHost and ITextHost2.
parent
819e1a89
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
15 deletions
+10
-15
msftedit.spec
dlls/msftedit/msftedit.spec
+3
-3
richole.c
dlls/riched20/richole.c
+3
-7
txtsrv.c
dlls/riched20/tests/txtsrv.c
+2
-2
textserv.h
include/textserv.h
+2
-3
No files found.
dlls/msftedit/msftedit.spec
View file @
82da77c0
2 extern IID_IRichEditOle
3 extern IID_IRichEditOleCallback
4 stdcall CreateTextServices(ptr ptr ptr) riched20.CreateTextServices
5 extern IID_ITextServices
6 extern IID_ITextHost
7 extern IID_ITextHost2
5 extern IID_ITextServices
riched20.IID_ITextServices
6 extern IID_ITextHost
riched20.IID_ITextHost
7 extern IID_ITextHost2
riched20.IID_ITextHost2
8 stdcall REExtendedRegisterClass() riched20.REExtendedRegisterClass
9 stdcall RichEdit10ANSIWndProc(ptr long long long) riched20.RichEdit10ANSIWndProc
10 stdcall RichEditANSIWndProc(ptr long long long) riched20.RichEditANSIWndProc
...
...
dlls/riched20/richole.c
View file @
82da77c0
...
...
@@ -39,14 +39,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(richedit);
/* there is no way to be consistent across different sets of headers - mingw, Wine, Win32 SDK*/
/* FIXME: the next 6 lines should be in textserv.h */
#include "initguid.h"
#define TEXTSERV_GUID(name, l, w1, w2, b1, b2) \
DEFINE_GUID(name, l, w1, w2, b1, b2, 0x00, 0xaa, 0x00, 0x6c, 0xad, 0xc5)
TEXTSERV_GUID
(
IID_ITextServices
,
0x8d33f740
,
0xcf58
,
0x11ce
,
0xa8
,
0x9d
);
TEXTSERV_GUID
(
IID_ITextHost
,
0xc5bdd8d0
,
0xd26e
,
0x11ce
,
0xa8
,
0x9e
);
TEXTSERV_GUID
(
IID_ITextHost2
,
0xc5bdd8d0
,
0xd26e
,
0x11ce
,
0xa8
,
0x9e
);
DEFINE_GUID
(
IID_ITextServices
,
0x8d33f740
,
0xcf58
,
0x11ce
,
0xa8
,
0x9d
,
0x00
,
0xaa
,
0x00
,
0x6c
,
0xad
,
0xc5
);
DEFINE_GUID
(
IID_ITextHost
,
0x13e670f4
,
0x1a5a
,
0x11cf
,
0xab
,
0xeb
,
0x00
,
0xaa
,
0x00
,
0xb6
,
0x5e
,
0xa1
);
DEFINE_GUID
(
IID_ITextHost2
,
0x13e670f5
,
0x1a5a
,
0x11cf
,
0xab
,
0xeb
,
0x00
,
0xaa
,
0x00
,
0xb6
,
0x5e
,
0xa1
);
DEFINE_GUID
(
IID_ITextDocument
,
0x8cc497c0
,
0xa1df
,
0x11ce
,
0x80
,
0x98
,
0x00
,
0xaa
,
0x00
,
0x47
,
0xbe
,
0x5d
);
DEFINE_GUID
(
IID_ITextRange
,
0x8cc497c2
,
0xa1df
,
0x11ce
,
0x80
,
0x98
,
0x00
,
0xaa
,
0x00
,
0x47
,
0xbe
,
0x5d
);
DEFINE_GUID
(
IID_ITextSelection
,
0x8cc497c1
,
0xa1df
,
0x11ce
,
0x80
,
0x98
,
0x00
,
0xaa
,
0x00
,
0x47
,
0xbe
,
0x5d
);
...
...
dlls/riched20/tests/txtsrv.c
View file @
82da77c0
...
...
@@ -806,9 +806,9 @@ static void test_IIDs(void)
{
ok
(
IsEqualIID
(
pIID_ITextServices
,
&
expected_iid_itextservices
),
"unexpected value for IID_ITextServices: %s
\n
"
,
debugstr_guid
(
pIID_ITextServices
));
todo_wine
ok
(
IsEqualIID
(
pIID_ITextHost
,
&
expected_iid_itexthost
),
ok
(
IsEqualIID
(
pIID_ITextHost
,
&
expected_iid_itexthost
),
"unexpected value for IID_ITextHost: %s
\n
"
,
debugstr_guid
(
pIID_ITextHost
));
todo_wine
ok
(
IsEqualIID
(
pIID_ITextHost2
,
&
expected_iid_itexthost2
),
ok
(
IsEqualIID
(
pIID_ITextHost2
,
&
expected_iid_itexthost2
),
"unexpected value for IID_ITextHost2: %s
\n
"
,
debugstr_guid
(
pIID_ITextHost2
));
}
...
...
include/textserv.h
View file @
82da77c0
...
...
@@ -23,9 +23,8 @@
extern
"C"
{
#endif
DEFINE_GUID
(
IID_ITextServices
,
0x8d33f740
,
0xcf58
,
0x11ce
,
0xa8
,
0x9d
,
0x00
,
0xaa
,
0x00
,
0x6c
,
0xad
,
0xc5
);
DEFINE_GUID
(
IID_ITextHost
,
0xc5bdd8d0
,
0xd26e
,
0x11ce
,
0xa8
,
0x9e
,
0x00
,
0xaa
,
0x00
,
0x6c
,
0xad
,
0xc5
);
DEFINE_GUID
(
IID_ITextHost2
,
0xc5bdd8d0
,
0xd26e
,
0x11ce
,
0xa8
,
0x9e
,
0x00
,
0xaa
,
0x00
,
0x6c
,
0xad
,
0xc5
);
EXTERN_C
const
IID
IID_ITextServices
;
EXTERN_C
const
IID
IID_ITextHost
;
/*****************************************************************************
* ITextServices interface
...
...
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