- Update to r53061
[reactos.git] / dll / win32 / kernel32 / client / session.c
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 */
21 DWORD
22 WINAPI
23 DosPathToSessionPathW(IN DWORD SessionID,
24 IN LPWSTR InPath,
25 OUT LPWSTR *OutPath)
26 {
27 UNIMPLEMENTED;
28 return 0;
29 }
30
31 /*
32 * @unimplemented
33 */
34 DWORD
35 WINAPI
36 DosPathToSessionPathA(IN DWORD SessionId,
37 IN LPSTR InPath,
38 OUT LPSTR *OutPath)
39 {
40 UNIMPLEMENTED;
41 return 0;
42 }
43
44 /*
45 * @implemented
46 */
47 DWORD
48 WINAPI
49 WTSGetActiveConsoleSessionId(VOID)
50 {
51 return SharedUserData->ActiveConsoleId;
52 }
53
54 /* EOF */