Commit b32c3102 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

oleaut32: Rename stubs.c file.

parent 11d332c3
...@@ -13,10 +13,10 @@ C_SRCS = \ ...@@ -13,10 +13,10 @@ C_SRCS = \
oleaut.c \ oleaut.c \
olefont.c \ olefont.c \
olepicture.c \ olepicture.c \
olepropframe.c \
recinfo.c \ recinfo.c \
regsvr.c \ regsvr.c \
safearray.c \ safearray.c \
stubs.c \
tmarshal.c \ tmarshal.c \
typelib.c \ typelib.c \
typelib2.c \ typelib2.c \
......
/* /*
* OlePro32 Stubs
*
* Copyright 1999 Corel Corporation * Copyright 1999 Corel Corporation
*
* Sean Langley * Sean Langley
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
...@@ -24,8 +21,6 @@ ...@@ -24,8 +21,6 @@
#include "windef.h" #include "windef.h"
#include "winbase.h" #include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "wine/debug.h" #include "wine/debug.h"
#include "ole2.h" #include "ole2.h"
#include "olectl.h" #include "olectl.h"
...@@ -35,22 +30,22 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole); ...@@ -35,22 +30,22 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
/*********************************************************************** /***********************************************************************
* OleCreatePropertyFrameIndirect (OLEAUT32.416) * OleCreatePropertyFrameIndirect (OLEAUT32.416)
*/ */
HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams) HRESULT WINAPI OleCreatePropertyFrameIndirect(LPOCPFIPARAMS lpParams)
{ {
FIXME("(%p), not implemented (olepro32.dll)\n",lpParams); FIXME("(%p), not implemented (olepro32.dll)\n", lpParams);
return S_OK; return S_OK;
} }
/*********************************************************************** /***********************************************************************
* OleCreatePropertyFrame (OLEAUT32.417) * OleCreatePropertyFrame (OLEAUT32.417)
*/ */
HRESULT WINAPI OleCreatePropertyFrame( HRESULT WINAPI OleCreatePropertyFrame(
HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects, HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects,
LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid, LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid,
DWORD dwReserved, LPVOID pvReserved ) DWORD dwReserved, LPVOID pvReserved)
{ {
FIXME("(%p,%d,%d,%s,%d,%p,%d,%p,%x,%d,%p), not implemented (olepro32.dll)\n", FIXME("(%p,%d,%d,%s,%d,%p,%d,%p,%x,%d,%p), not implemented (olepro32.dll)\n",
hwndOwner,x,y,debugstr_w(lpszCaption),cObjects,ppUnk,cPages, hwndOwner, x, y, debugstr_w(lpszCaption), cObjects, ppUnk, cPages,
pPageClsID, (int)lcid,dwReserved,pvReserved); pPageClsID, (int)lcid, dwReserved, pvReserved);
return S_OK; return S_OK;
} }
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