ReactOS 0.4.15-dev-7842-g558ab78
session.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Win32 Base API
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: dll/win32/kernel32/client/session.c
5 * PURPOSE: Session Support APIs
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7 */
8
9/* INCLUDES *******************************************************************/
10
11#include <k32.h>
12
13#define NDEBUG
14#include <debug.h>
15
16/* FUNCTIONS ******************************************************************/
17
18/*
19 * @unimplemented
20 */
24 IN LPWSTR InPath,
25 OUT LPWSTR *OutPath)
26{
28 return 0;
29}
30
31/*
32 * @unimplemented
33 */
37 IN LPSTR InPath,
38 OUT LPSTR *OutPath)
39{
41 return 0;
42}
43
44/*
45 * @implemented
46 */
50{
51 return SharedUserData->ActiveConsoleId;
52}
53
54/* EOF */
#define UNIMPLEMENTED
Definition: debug.h:115
ULONG SessionId
Definition: dllmain.c:28
DWORD WINAPI DosPathToSessionPathW(IN DWORD SessionID, IN LPWSTR InPath, OUT LPWSTR *OutPath)
Definition: session.c:23
DWORD WINAPI WTSGetActiveConsoleSessionId(VOID)
Definition: session.c:49
DWORD WINAPI DosPathToSessionPathA(IN DWORD SessionId, IN LPSTR InPath, OUT LPSTR *OutPath)
Definition: session.c:36
unsigned long DWORD
Definition: ntddk_ex.h:95
#define SharedUserData
#define IN
Definition: typedefs.h:39
#define OUT
Definition: typedefs.h:40
#define WINAPI
Definition: msvc.h:6
char * LPSTR
Definition: xmlstorage.h:182
WCHAR * LPWSTR
Definition: xmlstorage.h:184