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
f26e8090
Commit
f26e8090
authored
Oct 19, 2005
by
Pierre d'Herbemont
Committed by
Alexandre Julliard
Oct 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow compilation on non-i386.
parent
546bc6a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
tmarshal.c
dlls/oleaut32/tmarshal.c
+8
-1
No files found.
dlls/oleaut32/tmarshal.c
View file @
f26e8090
...
...
@@ -344,7 +344,9 @@ typedef struct _TMAsmProxy {
#include "poppack.h"
#else
/* __i386__ */
# error You need to implement stubless proxies for your architecture
# warning You need to implement stubless proxies for your architecture
typedef
struct
_TMAsmProxy
{
}
TMAsmProxy
;
#endif
typedef
struct
_TMProxyImpl
{
...
...
@@ -1939,6 +1941,7 @@ PSFacBuf_CreateProxy(
for
(
j
=
0
;
j
<
fdesc
->
cParams
;
j
++
)
nrofargs
+=
_argsize
(
fdesc
->
lprgelemdescParam
[
j
].
tdesc
.
vt
);
#ifdef __i386__
if
(
fdesc
->
callconv
!=
CC_STDCALL
)
{
ERR
(
"calling convention is not stdcall????
\n
"
);
return
E_FAIL
;
...
...
@@ -1963,6 +1966,10 @@ PSFacBuf_CreateProxy(
xasm
->
bytestopop
=
(
nrofargs
+
2
)
*
4
;
/* pop args, This, iMethod */
proxy
->
lpvtbl
[
i
]
=
xasm
;
break
;
#else
FIXME
(
"not implemented on non i386
\n
"
);
return
E_FAIL
;
#endif
}
}
}
...
...
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