[WTSAPI32]

* Sync with Wine 1.7.17.
CORE-8080

svn path=/trunk/; revision=62980
This commit is contained in:
Amine Khaldi 2014-04-26 16:43:13 +00:00
parent 47c34fa0c3
commit 9958654917
2 changed files with 12 additions and 4 deletions

View file

@ -87,7 +87,11 @@ BOOL WINAPI WTSEnumerateProcessesW(HANDLE hServer, DWORD Reserved, DWORD Version
FIXME("Stub %p 0x%08x 0x%08x %p %p\n", hServer, Reserved, Version, FIXME("Stub %p 0x%08x 0x%08x %p %p\n", hServer, Reserved, Version,
ppProcessInfo, pCount); ppProcessInfo, pCount);
if (!ppProcessInfo || !pCount) return FALSE; if (!ppProcessInfo || !pCount || Reserved != 0 || Version != 1)
{
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
}
*pCount = 0; *pCount = 0;
*ppProcessInfo = NULL; *ppProcessInfo = NULL;
@ -120,7 +124,9 @@ BOOL WINAPI WTSEnumerateServersW(LPWSTR pDomainName, DWORD Reserved, DWORD Versi
BOOL WINAPI WTSEnumerateSessionsA(HANDLE hServer, DWORD Reserved, DWORD Version, BOOL WINAPI WTSEnumerateSessionsA(HANDLE hServer, DWORD Reserved, DWORD Version,
PWTS_SESSION_INFOA* ppSessionInfo, DWORD* pCount) PWTS_SESSION_INFOA* ppSessionInfo, DWORD* pCount)
{ {
FIXME("Stub %p 0x%08x 0x%08x %p %p\n", hServer, Reserved, Version, static int once;
if (!once++) FIXME("Stub %p 0x%08x 0x%08x %p %p\n", hServer, Reserved, Version,
ppSessionInfo, pCount); ppSessionInfo, pCount);
if (!ppSessionInfo || !pCount) return FALSE; if (!ppSessionInfo || !pCount) return FALSE;
@ -153,7 +159,9 @@ BOOL WINAPI WTSEnumerateSessionsW(HANDLE hServer, DWORD Reserved, DWORD Version,
*/ */
void WINAPI WTSFreeMemory(PVOID pMemory) void WINAPI WTSFreeMemory(PVOID pMemory)
{ {
FIXME("Stub %p\n", pMemory); static int once;
if (!once++) FIXME("Stub %p\n", pMemory);
} }
/************************************************************ /************************************************************

View file

@ -215,7 +215,7 @@ reactos/dll/win32/winmm/wavemap # Forked at Wine-20050628
reactos/dll/win32/wintrust # Synced to Wine-1.7.17 reactos/dll/win32/wintrust # Synced to Wine-1.7.17
reactos/dll/win32/wldap32 # Synced to Wine-1.7.17 reactos/dll/win32/wldap32 # Synced to Wine-1.7.17
reactos/dll/win32/wmi # Synced to Wine-1.7.17 reactos/dll/win32/wmi # Synced to Wine-1.7.17
reactos/dll/win32/wtsapi32 # Synced to Wine-1.7.1 reactos/dll/win32/wtsapi32 # Synced to Wine-1.7.17
reactos/dll/win32/wuapi # Synced to Wine-1.7.1 reactos/dll/win32/wuapi # Synced to Wine-1.7.1
reactos/dll/win32/xinput1_1 # Synced to Wine-1.7.1 reactos/dll/win32/xinput1_1 # Synced to Wine-1.7.1
reactos/dll/win32/xinput1_2 # Synced to Wine-1.7.1 reactos/dll/win32/xinput1_2 # Synced to Wine-1.7.1