2006-10-28 19:45:02 +00:00
|
|
|
/*
|
|
|
|
* manifest.h
|
|
|
|
*
|
|
|
|
* This file is a part of NSIS.
|
|
|
|
*
|
2009-02-01 14:44:30 +00:00
|
|
|
* Copyright (C) 1999-2009 Nullsoft and Contributors
|
2006-10-28 19:45:02 +00:00
|
|
|
*
|
|
|
|
* Licensed under the zlib/libpng license (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
*
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty.
|
2010-03-24 17:22:56 +00:00
|
|
|
*
|
|
|
|
* Reviewed for Unicode support by Jim Park -- 08/22/2007
|
2006-10-28 19:45:02 +00:00
|
|
|
*/
|
|
|
|
|
2006-09-16 13:38:21 +00:00
|
|
|
#ifndef ___MANIFEST_H___
|
|
|
|
#define ___MANIFEST_H___
|
|
|
|
|
2010-03-24 17:22:56 +00:00
|
|
|
#include "tstring.h"
|
2006-09-16 13:38:21 +00:00
|
|
|
|
|
|
|
namespace manifest
|
|
|
|
{
|
|
|
|
enum comctl
|
|
|
|
{
|
|
|
|
comctl_old,
|
|
|
|
comctl_xp
|
|
|
|
};
|
|
|
|
|
|
|
|
enum exec_level
|
|
|
|
{
|
|
|
|
exec_level_none,
|
|
|
|
exec_level_user,
|
2006-11-10 14:54:23 +00:00
|
|
|
exec_level_highest,
|
2006-09-16 13:38:21 +00:00
|
|
|
exec_level_admin
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string generate(comctl, exec_level);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif//!___MANIFEST_H___
|