Misc fixes.

This commit is contained in:
Jon Griffiths 2003-07-18 22:55:39 +00:00 committed by Alexandre Julliard
parent 7787587587
commit 46e9210f81

View file

@ -69,8 +69,7 @@ DWORD WINAPI SHLWAPI_23(REFGUID,LPSTR,INT);
* Wine is impersonating does not use security descriptors (i.e. anything * Wine is impersonating does not use security descriptors (i.e. anything
* before Windows NT). * before Windows NT).
*/ */
LPSECURITY_ATTRIBUTES LPSECURITY_ATTRIBUTES WINAPI _CreateAllAccessSecurityAttributes(
WINAPI _CreateAllAccessSecurityAttributes(
LPSECURITY_ATTRIBUTES lpAttr, LPSECURITY_ATTRIBUTES lpAttr,
PSECURITY_DESCRIPTOR lpSec) PSECURITY_DESCRIPTOR lpSec)
{ {
@ -104,7 +103,7 @@ WINAPI _CreateAllAccessSecurityAttributes(
* Get an interface to the shell explorer. * Get an interface to the shell explorer.
* *
* PARAMS * PARAMS
* lppUnknown [O] pointer to receive IUnknown interface. * lppUnknown [O] Destination for explorers IUnknown interface.
* *
* RETURNS * RETURNS
* Success: S_OK. lppUnknown contains the explorer interface. * Success: S_OK. lppUnknown contains the explorer interface.
@ -135,7 +134,7 @@ typedef struct tagSHLWAPI_THREAD_INFO
/************************************************************************* /*************************************************************************
* SHGetThreadRef [SHLWAPI.@] * SHGetThreadRef [SHLWAPI.@]
* *
* Get a per-thread object reference set by SHSetThreadRef. * Get a per-thread object reference set by SHSetThreadRef().
* *
* PARAMS * PARAMS
* lppUnknown [O] Destination to receive object reference * lppUnknown [O] Destination to receive object reference
@ -148,7 +147,7 @@ HRESULT WINAPI SHGetThreadRef(IUnknown **lppUnknown)
{ {
TRACE("(%p)\n", lppUnknown); TRACE("(%p)\n", lppUnknown);
if (!lppUnknown || SHLWAPI_ThreadRef_index == -1u) if (!lppUnknown || SHLWAPI_ThreadRef_index == TLS_OUT_OF_INDEXES)
return E_NOINTERFACE; return E_NOINTERFACE;
*lppUnknown = (IUnknown*)TlsGetValue(SHLWAPI_ThreadRef_index); *lppUnknown = (IUnknown*)TlsGetValue(SHLWAPI_ThreadRef_index);
@ -192,7 +191,7 @@ HRESULT WINAPI SHSetThreadRef(IUnknown *lpUnknown)
* None. * None.
* *
* RETURNS * RETURNS
* Success: S_OK. The threads obbject reference is released. * Success: S_OK. The threads object reference is released.
* Failure: An HRESULT error code. * Failure: An HRESULT error code.
*/ */
HRESULT WINAPI SHReleaseThreadRef() HRESULT WINAPI SHReleaseThreadRef()
@ -261,7 +260,7 @@ static DWORD WINAPI SHLWAPI_ThreadWrapper(PVOID pTi)
* PARAMS * PARAMS
* pfnThreadProc [I] Function to execute in new thread * pfnThreadProc [I] Function to execute in new thread
* pData [I] Application specific data passed to pfnThreadProc * pData [I] Application specific data passed to pfnThreadProc
* dwFlags [I] Initialisation to perform in the new thread * dwFlags [I] CTF_ flags from "shlwapi.h"
* pfnCallback [I] Function to execute before pfnThreadProc * pfnCallback [I] Function to execute before pfnThreadProc
* *
* RETURNS * RETURNS
@ -348,9 +347,9 @@ BOOL WINAPI SHCreateThread(LPTHREAD_START_ROUTINE pfnThreadProc, VOID *pData,
* RETURNS * RETURNS
* The current count of the semaphore. * The current count of the semaphore.
*/ */
DWORD WINAPI _SHGlobalCounterGetValue(HANDLE hSem) LONG WINAPI _SHGlobalCounterGetValue(HANDLE hSem)
{ {
DWORD dwOldCount = 0; LONG dwOldCount = 0;
TRACE("(%p)\n", hSem); TRACE("(%p)\n", hSem);
ReleaseSemaphore(hSem, 1, &dwOldCount); /* +1 */ ReleaseSemaphore(hSem, 1, &dwOldCount); /* +1 */
@ -369,9 +368,9 @@ DWORD WINAPI _SHGlobalCounterGetValue(HANDLE hSem)
* RETURNS * RETURNS
* The new count of the semaphore. * The new count of the semaphore.
*/ */
DWORD WINAPI _SHGlobalCounterIncrement(HANDLE hSem) LONG WINAPI _SHGlobalCounterIncrement(HANDLE hSem)
{ {
DWORD dwOldCount = 0; LONG dwOldCount = 0;
TRACE("(%p)\n", hSem); TRACE("(%p)\n", hSem);
ReleaseSemaphore(hSem, 1, &dwOldCount); ReleaseSemaphore(hSem, 1, &dwOldCount);