Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmain.c
Go to the documentation of this file.
00001 /* $Id: main.c 43790 2009-10-27 10:34:16Z dgorbachev $ 00002 * 00003 * dllmain.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 HANDLE DllHandle = 0; 00031 00032 /* FUNCTIONS *****************************************************************/ 00033 00034 BOOL WINAPI DllMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved) 00035 { 00036 if (DLL_PROCESS_ATTACH == dwReason) 00037 { 00038 DllHandle = hDll; 00039 } 00040 00041 return TRUE; 00042 } 00043 00044 /* EOF */ Generated on Sat May 26 2012 04:15:46 for ReactOS by
1.7.6.1
|