2006-10-28 19:45:02 +00:00
|
|
|
/*
|
|
|
|
* components.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.
|
|
|
|
*/
|
|
|
|
|
2005-01-11 16:28:10 +00:00
|
|
|
#ifndef ___COMPONENTS_H___
|
|
|
|
#define ___COMPONENTS_H___
|
|
|
|
|
|
|
|
void NSISCALL SectionFlagsChanged(unsigned int index);
|
2005-09-09 14:29:12 +00:00
|
|
|
#define RefreshSectionGroups() _RefreshSectionGroups(0, 0)
|
|
|
|
unsigned int NSISCALL _RefreshSectionGroups(unsigned int i, int not_first_call);
|
2005-04-19 18:10:45 +00:00
|
|
|
#ifdef NSIS_CONFIG_COMPONENTPAGE
|
2005-01-11 16:28:10 +00:00
|
|
|
void NSISCALL SetInstType(int inst_type);
|
|
|
|
unsigned int NSISCALL GetInstType(HTREEITEM *items);
|
2005-04-19 18:10:45 +00:00
|
|
|
#endif//NSIS_CONFIG_COMPONENTPAGE
|
2005-01-11 16:28:10 +00:00
|
|
|
|
|
|
|
#endif//!___COMPONENTS_H___
|