2005-11-23 01:39:45 +00:00
|
|
|
/*
|
|
|
|
* ReactOS Access Control List Editor
|
|
|
|
* Copyright (C) 2004-2005 ReactOS Team
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-10-27 10:34:16 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-11-23 01:39:45 +00:00
|
|
|
*/
|
|
|
|
|
2005-12-25 21:20:13 +00:00
|
|
|
/* DO NOT USE THE PRECOMPILED HEADER FOR THIS FILE! */
|
|
|
|
|
2014-01-20 13:14:06 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
2014-01-20 13:14:06 +00:00
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <objbase.h>
|
2005-11-23 01:39:45 +00:00
|
|
|
#include <initguid.h>
|
|
|
|
#include <aclui.h>
|
|
|
|
#include <objsel.h>
|
|
|
|
|
|
|
|
/* NO CODE HERE, THIS IS JUST REQUIRED FOR THE GUID DEFINITIONS */
|