Commit 139ba414 authored by Alexandre Julliard's avatar Alexandre Julliard

riched20/tests: Move the itextServicesStdcallVtbl definition to avoid a compiler warning.

parent c9b4210b
...@@ -39,6 +39,7 @@ static HMODULE hmoduleRichEdit; ...@@ -39,6 +39,7 @@ static HMODULE hmoduleRichEdit;
/* Use a special table for x86 machines to convert the thiscall /* Use a special table for x86 machines to convert the thiscall
* calling convention. This isn't needed on other platforms. */ * calling convention. This isn't needed on other platforms. */
#ifdef __i386__ #ifdef __i386__
static ITextServicesVtbl itextServicesStdcallVtbl;
#define TXTSERV_VTABLE(This) (&itextServicesStdcallVtbl) #define TXTSERV_VTABLE(This) (&itextServicesStdcallVtbl)
#else /* __i386__ */ #else /* __i386__ */
#define TXTSERV_VTABLE(This) (This)->lpVtbl #define TXTSERV_VTABLE(This) (This)->lpVtbl
...@@ -441,8 +442,6 @@ static HRESULT WINAPI ITextHostImpl_TxGetSelectionBarWidth(ITextHost *iface, ...@@ -441,8 +442,6 @@ static HRESULT WINAPI ITextHostImpl_TxGetSelectionBarWidth(ITextHost *iface,
return E_NOTIMPL; return E_NOTIMPL;
} }
static ITextServicesVtbl itextServicesStdcallVtbl;
static ITextHostVtbl itextHostVtbl = { static ITextHostVtbl itextHostVtbl = {
ITextHostImpl_QueryInterface, ITextHostImpl_QueryInterface,
ITextHostImpl_AddRef, ITextHostImpl_AddRef,
......
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