Added stub for RegisterActiveObject().
This commit is contained in:
parent
2f521d3e98
commit
66e8c4eef8
|
@ -24,6 +24,7 @@ C_SRCS = \
|
|||
ole2disp.c \
|
||||
ole2nls.c \
|
||||
ole2stubs.c \
|
||||
oleaut32.c \
|
||||
olecli.c \
|
||||
oledlg.c \
|
||||
olefont.c \
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* OLEAUT32
|
||||
*
|
||||
*/
|
||||
#include <string.h>
|
||||
#include "winuser.h"
|
||||
#include "winerror.h"
|
||||
#include "oleauto.h"
|
||||
#include "wine/obj_base.h"
|
||||
#include "heap.h"
|
||||
#include "ldt.h"
|
||||
#include "debugtools.h"
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(ole)
|
||||
|
||||
HRESULT WINAPI RegisterActiveObject(DWORD x1,DWORD x2,DWORD x3,DWORD x4)
|
||||
{
|
||||
FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx), stub!\n",x1,x2,x3,x4);
|
||||
return E_FAIL;
|
||||
}
|
|
@ -33,7 +33,7 @@ type win32
|
|||
30 stub DispInvoke
|
||||
31 stub CreateDispTypeInfo
|
||||
32 stub CreateStdDispatch
|
||||
33 stub RegisterActiveObject
|
||||
33 stdcall RegisterActiveObject(long long long long) RegisterActiveObject
|
||||
34 stub RevokeActiveObject
|
||||
35 stub GetActiveObject
|
||||
36 stdcall SafeArrayAllocDescriptor(long ptr) SafeArrayAllocDescriptor
|
||||
|
|
Loading…
Reference in New Issue