From aa857dead36e91eb5f611a38bdc4385e658c5f17 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 12 Nov 2006 20:23:57 +0100 Subject: [PATCH] ole32: Standardize some documentation comments. --- dlls/ole32/ole2_16.c | 5 ++++- dlls/ole32/storage.c | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dlls/ole32/ole2_16.c b/dlls/ole32/ole2_16.c index a7a5f55b5d1..1c6bba159e8 100644 --- a/dlls/ole32/ole2_16.c +++ b/dlls/ole32/ole2_16.c @@ -154,9 +154,12 @@ HRESULT WINAPI CreateFileMoniker16(LPCOLESTR16 lpszPathName,LPMONIKER* ppmk) /****************************************************************************** * OleSetMenuDescriptor (OLE2.41) + * + * PARAMS + * hOleMenu FIXME: Should probably be an HOLEMENU16. */ HRESULT WINAPI OleSetMenuDescriptor16( - HOLEMENU hOleMenu, /* FIXME: HOLEMENU16 likely */ + HOLEMENU hOleMenu, HWND16 hwndFrame, HWND16 hwndActiveObject, LPOLEINPLACEFRAME lpFrame, diff --git a/dlls/ole32/storage.c b/dlls/ole32/storage.c index 901150c7a68..401c9845442 100644 --- a/dlls/ole32/storage.c +++ b/dlls/ole32/storage.c @@ -2181,9 +2181,12 @@ HRESULT WINAPI StgIsStorageILockBytes16(SEGPTR plkbyt) /****************************************************************************** * StgOpenStorageOnILockBytes [STORAGE.4] + * + * PARAMS + * plkbyt FIXME: Should probably be an ILockBytes16 *. */ HRESULT WINAPI StgOpenStorageOnILockBytes16( - SEGPTR /*ILockBytes16 **/plkbyt, + SEGPTR plkbyt, IStorage16 *pstgPriority, DWORD grfMode, SNB16 snbExclude,