reactos/reactos/subsys/csrss/api/process.c

31 lines
444 B
C
Raw Normal View History

1999-07-17 23:10:31 +00:00
/* $Id: process.c,v 1.2 1999/07/17 23:10:30 ea Exp $
*
* reactos/subsys/csrss/api/process.c
*
* "\windows\ApiPort" port process management functions
*
* ReactOS Operating System
*/
1999-07-17 23:10:31 +00:00
#define PROTO_LPC
#include <ddk/ntddk.h>
1999-07-17 23:10:31 +00:00
DWORD
CSR_CreateProcess (
1999-07-17 23:10:31 +00:00
PLPC_MESSAGE pLpcMessage
)
{
return LPC_ERROR_CALL_NOT_IMPLEMENTED;
}
1999-07-17 23:10:31 +00:00
DWORD
CSR_TerminateProcess(
1999-07-17 23:10:31 +00:00
PLPC_MESSAGE pLpcMessage
)
{
return LPC_ERROR_CALL_NOT_IMPLEMENTED;
}
/* EOF */