Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygensession.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Win32 Base API 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: dll/win32/kernel32/client/session.c 00005 * PURPOSE: Session Support APIs 00006 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) 00007 */ 00008 00009 /* INCLUDES *******************************************************************/ 00010 00011 #include <k32.h> 00012 00013 #define NDEBUG 00014 #include <debug.h> 00015 00016 /* FUNCTIONS ******************************************************************/ 00017 00018 /* 00019 * @unimplemented 00020 */ 00021 DWORD 00022 WINAPI 00023 DosPathToSessionPathW(IN DWORD SessionID, 00024 IN LPWSTR InPath, 00025 OUT LPWSTR *OutPath) 00026 { 00027 UNIMPLEMENTED; 00028 return 0; 00029 } 00030 00031 /* 00032 * @unimplemented 00033 */ 00034 DWORD 00035 WINAPI 00036 DosPathToSessionPathA(IN DWORD SessionId, 00037 IN LPSTR InPath, 00038 OUT LPSTR *OutPath) 00039 { 00040 UNIMPLEMENTED; 00041 return 0; 00042 } 00043 00044 /* 00045 * @implemented 00046 */ 00047 DWORD 00048 WINAPI 00049 WTSGetActiveConsoleSessionId(VOID) 00050 { 00051 return SharedUserData->ActiveConsoleId; 00052 } 00053 00054 /* EOF */ Generated on Thu May 24 2012 04:24:45 for ReactOS by
1.7.6.1
|