Commit 54ba29ac authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed compilation for non-i386.

parent 0ca051e5
......@@ -84,13 +84,6 @@ struct StublessThunk {
x->pad[1] = 0x76; \
x->pad[2] = 0x00;
#else
/* can't do that on this arch */
struct ObjectStubless {};
#define FILL_STUBLESS(x,idx) \
ERR("stubless proxies are not supported on this architecture\n");
#endif
static HRESULT WINAPI ObjectStubless(DWORD index)
{
char *args = (char*)(&index + 2);
......@@ -105,6 +98,16 @@ static HRESULT WINAPI ObjectStubless(DWORD index)
return RPCRT4_NdrClientCall2(This->stubless->pStubDesc, fs, args);
}
#else /* __i386__ */
/* can't do that on this arch */
struct StublessThunk { int dummy; };
#define FILL_STUBLESS(x,idx,stk) \
ERR("stubless proxies are not supported on this architecture\n");
#define STACK_ADJUST 0
#endif /* __i386__ */
HRESULT WINAPI StdProxy_Construct(REFIID riid,
LPUNKNOWN pUnkOuter,
CInterfaceProxyVtbl *vtbl,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment