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
0ed304e9
Commit
0ed304e9
authored
Jun 17, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleacc: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0f47bb66
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
8 deletions
+7
-8
Makefile.in
dlls/oleacc/Makefile.in
+2
-0
client.c
dlls/oleacc/client.c
+0
-1
main.c
dlls/oleacc/main.c
+5
-6
window.c
dlls/oleacc/window.c
+0
-1
No files found.
dlls/oleacc/Makefile.in
View file @
0ed304e9
...
...
@@ -2,6 +2,8 @@ MODULE = oleacc.dll
IMPORTLIB
=
oleacc
IMPORTS
=
uuid oleaut32 ole32 user32 rpcrt4
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
client.c
\
main.c
\
...
...
dlls/oleacc/client.c
View file @
0ed304e9
...
...
@@ -20,7 +20,6 @@
#include "oleacc_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/heap.h"
...
...
dlls/oleacc/main.c
View file @
0ed304e9
...
...
@@ -31,7 +31,6 @@
#include "oleacc_private.h"
#include "resource.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
oleacc
);
...
...
@@ -114,7 +113,7 @@ static accessible_create get_builtin_accessible_obj(HWND hwnd, LONG objid)
TRACE
(
"got window class: %s
\n
"
,
debugstr_w
(
class_name
));
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
builtin_classes
);
i
++
)
{
if
(
!
strcmpiW
(
class_name
,
builtin_classes
[
i
].
name
))
{
if
(
!
wcsicmp
(
class_name
,
builtin_classes
[
i
].
name
))
{
accessible_create
ret
;
ret
=
(
objid
==
OBJID_CLIENT
?
...
...
@@ -198,13 +197,13 @@ HRESULT WINAPI ObjectFromLresult( LRESULT result, REFIID riid, WPARAM wParam, vo
if
(
memcmp
(
atom_str
,
lresult_atom_prefix
,
sizeof
(
lresult_atom_prefix
)))
return
E_FAIL
;
p
=
atom_str
+
ARRAY_SIZE
(
lresult_atom_prefix
);
proc_id
=
strtoulW
(
p
,
&
p
,
16
);
proc_id
=
wcstoul
(
p
,
&
p
,
16
);
if
(
*
p
!=
':'
)
return
E_FAIL
;
server_mapping
=
ULongToHandle
(
strtoulW
(
p
+
1
,
&
p
,
16
)
);
server_mapping
=
ULongToHandle
(
wcstoul
(
p
+
1
,
&
p
,
16
)
);
if
(
*
p
!=
':'
)
return
E_FAIL
;
size
=
strtoulW
(
p
+
1
,
&
p
,
16
);
size
=
wcstoul
(
p
+
1
,
&
p
,
16
);
if
(
*
p
!=
0
)
return
E_FAIL
;
...
...
@@ -320,7 +319,7 @@ LRESULT WINAPI LresultFromObject( REFIID riid, WPARAM wParam, LPUNKNOWN pAcc )
}
memcpy
(
atom_str
,
lresult_atom_prefix
,
sizeof
(
lresult_atom_prefix
));
s
printfW
(
atom_str
+
ARRAY_SIZE
(
lresult_atom_prefix
)
,
atom_fmt
,
GetCurrentProcessId
(),
s
wprintf
(
atom_str
+
ARRAY_SIZE
(
lresult_atom_prefix
),
3
*
8
+
3
,
atom_fmt
,
GetCurrentProcessId
(),
HandleToUlong
(
mapping
),
stat
.
cbSize
.
u
.
LowPart
);
atom
=
GlobalAddAtomW
(
atom_str
);
if
(
!
atom
)
{
...
...
dlls/oleacc/window.c
View file @
0ed304e9
...
...
@@ -20,7 +20,6 @@
#include "oleacc_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/heap.h"
...
...
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