Some small cleanups.
This commit is contained in:
parent
6b1887e49b
commit
331fb086be
|
@ -102,7 +102,7 @@ static void COMDLG32_UpdateCurrentDir(FileOpenDlgInfos *fodInfos)
|
|||
/* copied from shell32 to avoid linking to it */
|
||||
static HRESULT COMDLG32_StrRetToStrNW (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLIST pidl)
|
||||
{
|
||||
TRACE("dest=0x%p len=0x%lx strret=0x%p pidl=%p stub\n",dest,len,src,pidl);
|
||||
TRACE("dest=%p len=0x%lx strret=%p pidl=%p stub\n",dest,len,src,pidl);
|
||||
|
||||
switch (src->uType)
|
||||
{
|
||||
|
|
|
@ -47,7 +47,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
|||
|
||||
HRESULT WINAPI StrRetToStrNA (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl)
|
||||
{
|
||||
TRACE("dest=0x%p len=0x%lx strret=%p(%s) pidl=%p\n",
|
||||
TRACE("dest=%p len=0x%lx strret=%p(%s) pidl=%p\n",
|
||||
dest,len,src,
|
||||
(src->uType == STRRET_WSTR) ? "STRRET_WSTR" :
|
||||
(src->uType == STRRET_CSTR) ? "STRRET_CSTR" :
|
||||
|
@ -82,7 +82,7 @@ HRESULT WINAPI StrRetToStrNA (LPVOID dest, DWORD len, LPSTRRET src, const ITEMID
|
|||
|
||||
HRESULT WINAPI StrRetToStrNW (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl)
|
||||
{
|
||||
TRACE("dest=0x%p len=0x%lx strret=%p(%s) pidl=%p\n",
|
||||
TRACE("dest=%p len=0x%lx strret=%p(%s) pidl=%p\n",
|
||||
dest,len,src,
|
||||
(src->uType == STRRET_WSTR) ? "STRRET_WSTR" :
|
||||
(src->uType == STRRET_CSTR) ? "STRRET_CSTR" :
|
||||
|
|
|
@ -276,7 +276,7 @@ TW_UINT16 TWAIN_ImageNativeXferGet (pTW_IDENTITY pOrigin, pTW_IDENTITY pDest,
|
|||
|
||||
sane_cancel (pSource->deviceHandle);
|
||||
ReleaseDC (pSource->hwndOwner, dc);
|
||||
*pHandle = hDIB;
|
||||
*pHandle = (TW_UINT32)hDIB;
|
||||
twRC = TWRC_XFERDONE;
|
||||
pSource->twCC = TWCC_SUCCESS;
|
||||
pSource->currentState = 7;
|
||||
|
|
Loading…
Reference in New Issue