Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenacledit.c
Go to the documentation of this file.
00001 /* 00002 * ReactOS Access Control List Editor 00003 * Copyright (C) 2004 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 Access Control List Editor 00021 * FILE: lib/acledit/acledit.c 00022 * PURPOSE: Access Control List Editor 00023 * PROGRAMMER: Thomas Weidenmueller (w3seek@users.sourceforge.net) 00024 * 00025 * Based on guess work and on this nice article: 00026 * http://www.sysinternals.com/ntw2k/info/acledit.shtml 00027 * 00028 * UPDATE HISTORY: 00029 * 07/09/2004 Created 00030 */ 00031 00032 #include "acleditint.h" 00033 00034 HINSTANCE hDllInstance; 00035 00036 00037 BOOL WINAPI 00038 DllMain( 00039 HINSTANCE hinstDLL, 00040 DWORD dwReason, 00041 LPVOID lpvReserved) 00042 { 00043 UNREFERENCED_PARAMETER(lpvReserved); 00044 00045 switch (dwReason) 00046 { 00047 case DLL_PROCESS_ATTACH: 00048 hDllInstance = hinstDLL; 00049 break; 00050 case DLL_THREAD_ATTACH: 00051 break; 00052 case DLL_THREAD_DETACH: 00053 break; 00054 case DLL_PROCESS_DETACH: 00055 break; 00056 } 00057 return TRUE; 00058 } 00059 Generated on Fri May 25 2012 04:20:31 for ReactOS by
1.7.6.1
|