BOOL WINAPI WTSDisconnectSession(HANDLE hServer, DWORD SessionId, BOOL bWait)
{
FIXME("Stub %p 0x%08lx %d\n", hServer, SessionId, bWait);
- return FALSE;
+ return TRUE;
}
/************************************************************
{
FIXME("Stub %p 0x%08lx 0x%08lx %p %p\n", hServer, Reserved, Version,
ppProcessInfo, pCount);
- return FALSE;
+
+ if (!ppProcessInfo || !pCount) return FALSE;
+
+ *pCount = 0;
+ *ppProcessInfo = NULL;
+
+ return TRUE;
}
/************************************************************
{
FIXME("Stub %p 0x%08lx 0x%08lx %p %p\n", hServer, Reserved, Version,
ppProcessInfo, pCount);
- return FALSE;
+
+ if (!ppProcessInfo || !pCount) return FALSE;
+
+ *pCount = 0;
+ *ppProcessInfo = NULL;
+
+ return TRUE;
}
/************************************************************
{
FIXME("Stub %p 0x%08lx 0x%08lx %p %p\n", hServer, Reserved, Version,
ppSessionInfo, pCount);
- return FALSE;
+
+ if (!ppSessionInfo || !pCount) return FALSE;
+
+ *pCount = 0;
+ *ppSessionInfo = NULL;
+
+ return TRUE;
}
/************************************************************
{
FIXME("Stub %p 0x%08lx 0x%08lx %p %p\n", hServer, Reserved, Version,
ppSessionInfo, pCount);
- return FALSE;
+
+ if (!ppSessionInfo || !pCount) return FALSE;
+
+ *pCount = 0;
+ *ppSessionInfo = NULL;
+
+ return TRUE;
}
/************************************************************