CSR Reloaded... well, split.
[reactos.git] / reactos / subsys / csr / csrsrv / debug.c
1 /* $Id$
2 *
3 * subsys/csr/csrsrv/debug.c - CSR server - debugging management
4 *
5 * ReactOS Operating System
6 *
7 * --------------------------------------------------------------------
8 *
9 * This software is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
13 *
14 * This software is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this software; see the file COPYING.LIB. If not, write
21 * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
22 * MA 02139, USA.
23 *
24 * --------------------------------------------------------------------
25 */
26 #include "srv.h"
27
28 //#define NDEBUG
29 #include <debug.h>
30
31 /*=====================================================================
32 * PUBLIC API
33 *===================================================================*/
34
35 NTSTATUS STDCALL CsrDebugProcess (PCSR_PROCESS pCsrProcess)
36 {
37 NTSTATUS Status = STATUS_NOT_IMPLEMENTED;
38
39 DPRINT("CSRSRV: %s(%08lx) called\n", __FUNCTION__, pCsrProcess);
40
41 return Status;
42 }
43
44 NTSTATUS STDCALL CsrDebugProcessStop (PCSR_PROCESS pCsrProcess)
45 {
46 NTSTATUS Status = STATUS_NOT_IMPLEMENTED;
47
48 DPRINT("CSRSRV: %s(%08lx) called\n", __FUNCTION__, pCsrProcess);
49
50 return Status;
51 }
52
53 /* EOF */