mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00
29 lines
470 B
C
29 lines
470 B
C
![]() |
/* $Id: process.c,v 1.1 1999/06/08 22:50:59 ea Exp $
|
||
|
*
|
||
|
* reactos/subsys/csrss/api/process.c
|
||
|
*
|
||
|
* "\windows\ApiPort" port process management functions
|
||
|
*
|
||
|
* ReactOS Operating System
|
||
|
*/
|
||
|
#include <internal/lpc.h>
|
||
|
|
||
|
LPC_RETURN_CODE
|
||
|
CSR_CreateProcess (
|
||
|
PLPC_REQUEST_REPLY pLpcRequestReply
|
||
|
)
|
||
|
{
|
||
|
return LPC_ERROR_CALL_NOT_IMPLEMENTED;
|
||
|
}
|
||
|
|
||
|
|
||
|
LPC_RETURN_CODE
|
||
|
CSR_TerminateProcess(
|
||
|
PLPC_REQUEST_REPLY pLpcRequestReply
|
||
|
)
|
||
|
{
|
||
|
return LPC_ERROR_CALL_NOT_IMPLEMENTED;
|
||
|
}
|
||
|
|
||
|
/* EOF */
|