1 /* 2 * ReactOS Access Control List Editor 3 * Copyright (C) 2004 ReactOS Team 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public 7 * License as published by the Free Software Foundation; either 8 * version 2.1 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this library; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 */ 19 /* 20 * PROJECT: ReactOS Access Control List Editor 21 * FILE: lib/acledit/acledit.c 22 * PURPOSE: Access Control List Editor 23 * PROGRAMMER: Thomas Weidenmueller (w3seek@users.sourceforge.net) 24 * 25 * Based on guess work and on this nice article: 26 * http://www.sysinternals.com/ntw2k/info/acledit.shtml 27 * 28 * UPDATE HISTORY: 29 * 07/09/2004 Created 30 */ 31 32 #include "acleditint.h" 33 34 HINSTANCE hDllInstance; 35 36 BOOL WINAPI 37 DllMain( 38 HINSTANCE hinstDLL, 39 DWORD dwReason, 40 LPVOID lpvReserved) 41 { 42 UNREFERENCED_PARAMETER(lpvReserved); 43 44 switch (dwReason) 45 { 46 case DLL_PROCESS_ATTACH: 47 hDllInstance = hinstDLL; 48 break; 49 case DLL_THREAD_ATTACH: 50 break; 51 case DLL_THREAD_DETACH: 52 break; 53 case DLL_PROCESS_DETACH: 54 break; 55 } 56 return TRUE; 57 } 58 59