Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenserver.c
Go to the documentation of this file.
00001 /* $Id: server.c 43790 2009-10-27 10:34:16Z dgorbachev $ 00002 * 00003 * server.c - ReactOS/Win32 base enviroment subsystem server 00004 * 00005 * ReactOS Operating System 00006 * 00007 * -------------------------------------------------------------------- 00008 * 00009 * This program is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License along 00020 * with this program; if not, write to the Free Software Foundation, Inc., 00021 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 00022 * 00023 * -------------------------------------------------------------------- 00024 */ 00025 #include "basesrv.h" 00026 00027 #define NDEBUG 00028 #include <debug.h> 00029 00030 /*===================================================================== 00031 * PUBLIC API 00032 *===================================================================*/ 00033 00034 NTSTATUS WINAPI BaseSetProcessCreateNotify (BASE_PROCESS_CREATE_NOTIFY_ROUTINE ProcessCreateNotifyProc) 00035 { 00036 NTSTATUS Status = STATUS_NOT_IMPLEMENTED; 00037 00038 DPRINT("BASESRV: %s(%08lx) called\n", __FUNCTION__, ProcessCreateNotifyProc); 00039 return Status; 00040 } 00041 00042 /* EOF */ Generated on Sun May 27 2012 04:27:00 for ReactOS by
1.7.6.1
|