mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
A stub file for TS APIs in kernel32.
svn path=/trunk/; revision=2421
This commit is contained in:
parent
ef93b48310
commit
d36ee56715
1 changed files with 28 additions and 0 deletions
28
reactos/lib/kernel32/process/session.c
Normal file
28
reactos/lib/kernel32/process/session.c
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* $Id: session.c,v 1.1 2001/12/07 11:19:49 ea Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
* FILE: lib/kernel32/proc/session.c
|
||||
* PURPOSE: Win32 session (TS) functions
|
||||
* PROGRAMMER: Emanuele Aliberti
|
||||
* UPDATE HISTORY:
|
||||
* 2001-12-07 created
|
||||
*/
|
||||
#include <ddk/ntddk.h>
|
||||
|
||||
BOOL STDCALL ProcessIdToSessionId (
|
||||
DWORD dwProcessId,
|
||||
DWORD* pSessionId
|
||||
)
|
||||
{
|
||||
if (NULL != pSessionId)
|
||||
{
|
||||
/* TODO: implement TS */
|
||||
*pSessionId = 0; /* no TS */
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/* EOF */
|
Loading…
Reference in a new issue