Sync to Wine-20050830:
[reactos.git] / reactos / lib / ole32 / ole2_16.c
index 77c1d28..7909412 100644 (file)
@@ -192,3 +192,20 @@ BOOL WINAPI IsValidInterface16(SEGPTR punk)
                return FALSE;
        return TRUE;
 }
+
+/******************************************************************************
+ *              OleLoad        [OLE2.12]
+ *
+ * PARAMS
+ *  pStg Segmented LPSTORAGE pointer.
+ *  pClientSite Segmented LPOLECLIENTSITE pointer.
+ */
+HRESULT WINAPI OleLoad16(
+    SEGPTR             pStg,
+    REFIID             riid,
+    SEGPTR             pClientSite,
+    LPVOID*            ppvObj)
+{
+  FIXME("(%lx,%s,%lx,%p), stub!\n", pStg, debugstr_guid(riid), pClientSite, ppvObj);
+  return E_NOTIMPL;
+}