a7b98fc4d41e2ce0a66fd92675cbcf2a217cc7f1
[reactos.git] / reactos / dll / win32 / acledit / acledit.c
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
37 BOOL WINAPI
38 DllMain(
39 HINSTANCE hinstDLL,
40 DWORD dwReason,
41 LPVOID lpvReserved)
42 {
43 UNREFERENCED_PARAMETER(lpvReserved);
44
45 switch (dwReason)
46 {
47 case DLL_PROCESS_ATTACH:
48 hDllInstance = hinstDLL;
49 break;
50 case DLL_THREAD_ATTACH:
51 break;
52 case DLL_THREAD_DETACH:
53 break;
54 case DLL_PROCESS_DETACH:
55 break;
56 }
57 return TRUE;
58 }
59