sync to trunk head (35945)
[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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19 /* $Id$
20 *
21 * PROJECT: ReactOS Access Control List Editor
22 * FILE: lib/acledit/acledit.c
23 * PURPOSE: Access Control List Editor
24 * PROGRAMMER: Thomas Weidenmueller (w3seek@users.sourceforge.net)
25 *
26 * Based on guess work and on this nice article:
27 * http://www.sysinternals.com/ntw2k/info/acledit.shtml
28 *
29 * UPDATE HISTORY:
30 * 07/09/2004 Created
31 */
32 #include <windows.h>
33 #include "acleditint.h"
34 #include "resource.h"
35
36 HINSTANCE hDllInstance;
37
38
39 BOOL STDCALL
40 DllMain(
41 HINSTANCE hinstDLL,
42 DWORD dwReason,
43 LPVOID lpvReserved)
44 {
45 UNREFERENCED_PARAMETER(lpvReserved);
46
47 switch (dwReason)
48 {
49 case DLL_PROCESS_ATTACH:
50 hDllInstance = hinstDLL;
51 break;
52 case DLL_THREAD_ATTACH:
53 break;
54 case DLL_THREAD_DETACH:
55 break;
56 case DLL_PROCESS_DETACH:
57 break;
58 }
59 return TRUE;
60 }
61