Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmain.c
Go to the documentation of this file.
00001 /* 00002 * ReactOS WinStation 00003 * Copyright (C) 2005 ReactOS Team 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library; if not, write to the Free Software 00017 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 */ 00019 /* 00020 * PROJECT: ReactOS winsta.dll 00021 * FILE: lib/winsta/main.c 00022 * PURPOSE: WinStation 00023 * PROGRAMMER: Emanuele Aliberti <ea@reactos.com> 00024 * Samuel Serapi?n 00025 */ 00026 #include <winsta.h> 00027 00028 HINSTANCE hDllInstance; 00029 00030 00031 BOOL WINAPI 00032 DllMain(HINSTANCE hinstDLL, 00033 DWORD dwReason, 00034 LPVOID lpvReserved) 00035 { 00036 switch (dwReason) 00037 { 00038 case DLL_PROCESS_ATTACH: 00039 hDllInstance = hinstDLL; 00040 break; 00041 case DLL_THREAD_ATTACH: 00042 break; 00043 case DLL_THREAD_DETACH: 00044 break; 00045 case DLL_PROCESS_DETACH: 00046 break; 00047 } 00048 return TRUE; 00049 } 00050 /* EOF */ Generated on Sun May 27 2012 04:16:43 for ReactOS by
1.7.6.1
|