mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
54 lines
1,020 B
C
54 lines
1,020 B
C
/*
|
|
* PROJECT: ReactOS Win32 Base API
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: dll/win32/kernel32/client/session.c
|
|
* PURPOSE: Session Support APIs
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
#include <k32.h>
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
DWORD
|
|
WINAPI
|
|
DosPathToSessionPathW(IN DWORD SessionID,
|
|
IN LPWSTR InPath,
|
|
OUT LPWSTR *OutPath)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
DWORD
|
|
WINAPI
|
|
DosPathToSessionPathA(IN DWORD SessionId,
|
|
IN LPSTR InPath,
|
|
OUT LPSTR *OutPath)
|
|
{
|
|
UNIMPLEMENTED;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
DWORD
|
|
WINAPI
|
|
WTSGetActiveConsoleSessionId(VOID)
|
|
{
|
|
return SharedUserData->ActiveConsoleId;
|
|
}
|
|
|
|
/* EOF */
|