Module: wine Branch: master Commit: b32c3102d2b45f8d0b18ac8692706304563aa12d URL: http://source.winehq.org/git/wine.git/?a=commit;h=b32c3102d2b45f8d0b18ac8692...
Author: Piotr Caban piotr@codeweavers.com Date: Mon Sep 27 12:00:19 2010 +0200
oleaut32: Rename stubs.c file.
---
dlls/oleaut32/Makefile.in | 2 +- dlls/oleaut32/{stubs.c => olepropframe.c} | 25 ++++++++++--------------- 2 files changed, 11 insertions(+), 16 deletions(-)
diff --git a/dlls/oleaut32/Makefile.in b/dlls/oleaut32/Makefile.in index ec23bd2..bf84c80 100644 --- a/dlls/oleaut32/Makefile.in +++ b/dlls/oleaut32/Makefile.in @@ -13,10 +13,10 @@ C_SRCS = \ oleaut.c \ olefont.c \ olepicture.c \ + olepropframe.c \ recinfo.c \ regsvr.c \ safearray.c \ - stubs.c \ tmarshal.c \ typelib.c \ typelib2.c \ diff --git a/dlls/oleaut32/stubs.c b/dlls/oleaut32/olepropframe.c similarity index 67% rename from dlls/oleaut32/stubs.c rename to dlls/oleaut32/olepropframe.c index d87e76e..b3e27d2 100644 --- a/dlls/oleaut32/stubs.c +++ b/dlls/oleaut32/olepropframe.c @@ -1,8 +1,5 @@ /* - * OlePro32 Stubs - * * Copyright 1999 Corel Corporation - * * Sean Langley * * This library is free software; you can redistribute it and/or @@ -24,8 +21,6 @@
#include "windef.h" #include "winbase.h" -#include "wingdi.h" -#include "winuser.h" #include "wine/debug.h" #include "ole2.h" #include "olectl.h" @@ -35,22 +30,22 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole); /*********************************************************************** * OleCreatePropertyFrameIndirect (OLEAUT32.416) */ -HRESULT WINAPI OleCreatePropertyFrameIndirect( LPOCPFIPARAMS lpParams) +HRESULT WINAPI OleCreatePropertyFrameIndirect(LPOCPFIPARAMS lpParams) { - FIXME("(%p), not implemented (olepro32.dll)\n",lpParams); - return S_OK; + FIXME("(%p), not implemented (olepro32.dll)\n", lpParams); + return S_OK; }
/*********************************************************************** * OleCreatePropertyFrame (OLEAUT32.417) */ HRESULT WINAPI OleCreatePropertyFrame( - HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects, - LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid, - DWORD dwReserved, LPVOID pvReserved ) + HWND hwndOwner, UINT x, UINT y, LPCOLESTR lpszCaption,ULONG cObjects, + LPUNKNOWN* ppUnk, ULONG cPages, LPCLSID pPageClsID, LCID lcid, + DWORD dwReserved, LPVOID pvReserved) { - 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, - pPageClsID, (int)lcid,dwReserved,pvReserved); - return S_OK; + 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, + pPageClsID, (int)lcid, dwReserved, pvReserved); + return S_OK; }