4 * Copyright 1995 Martin von Loewis
13 /******************************************************************************
14 * OleBuildVersion [OLE2.1]
16 DWORD WINAPI
OleBuildVersion()
18 TRACE(ole
,"(void)\n");
22 /***********************************************************************
23 * OleInitialize (OLE2.2) (OLE32.108)
25 HRESULT WINAPI
OleInitialize(LPVOID reserved
)
27 FIXME(ole
,"OleInitialize - stub\n");
31 /******************************************************************************
32 * CoGetCurrentProcess [COMPOBJ.34] [OLE2.2][OLE32.108]
35 * Is DWORD really the correct return type for this function?
37 DWORD WINAPI
CoGetCurrentProcess() {
38 return (DWORD
)PROCESS_Current();
41 /******************************************************************************
42 * OleUninitialize [OLE2.3] [OLE32.131]
44 void WINAPI
OleUninitialize(void)
49 /***********************************************************************
50 * OleFlushClipboard [OLE2.76]
52 HRESULT WINAPI
OleFlushClipboard()
57 /******************************************************************************
58 * CoRegisterMessageFilter32 [OLE32.38]
60 HRESULT WINAPI
CoRegisterMessageFilter32(
61 LPMESSAGEFILTER lpMessageFilter
, /* Pointer to interface */
62 LPMESSAGEFILTER
*lplpMessageFilter
/* Indirect pointer to prior instance if non-NULL */
65 if (lplpMessageFilter
) {
66 *lplpMessageFilter
= NULL
;
71 /******************************************************************************
72 * OleInitializeWOW [OLE32.109]
74 HRESULT WINAPI
OleInitializeWOW(DWORD x
) {
75 FIXME(ole
,"(0x%08lx),stub!\n",x
);
79 /******************************************************************************
80 * GetRunningObjectTable16 [OLE2.30]
82 HRESULT WINAPI
GetRunningObjectTable16(DWORD reserved
, LPVOID
*pprot
) {
83 FIXME(ole
,"(%ld,%p),stub!\n",reserved
,pprot
);
87 /***********************************************************************
88 * RegisterDragDrop16 (OLE2.35)
90 HRESULT WINAPI
RegisterDragDrop16(
92 LPDROPTARGET pDropTarget
94 FIXME(ole
,"(0x%04x,%p),stub!\n",hwnd
,pDropTarget
);
98 /***********************************************************************
99 * RegisterDragDrop32 (OLE32.139)
101 HRESULT WINAPI
RegisterDragDrop32(
103 LPDROPTARGET pDropTarget
105 FIXME(ole
,"(0x%04x,%p),stub!\n",hwnd
,pDropTarget
);
109 /***********************************************************************
110 * RevokeDragDrop16 (OLE2.36)
112 HRESULT WINAPI
RevokeDragDrop16(
115 FIXME(ole
,"(0x%04x),stub!\n",hwnd
);
119 /***********************************************************************
120 * RevokeDragDrop32 (OLE32.141)
122 HRESULT WINAPI
RevokeDragDrop32(
125 FIXME(ole
,"(0x%04x),stub!\n",hwnd
);