2006-10-28 19:45:02 +00:00
|
|
|
/*
|
|
|
|
* exec.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.
|
|
|
|
*/
|
|
|
|
|
2002-08-02 10:01:35 +00:00
|
|
|
#ifndef _EXEC_H_
|
|
|
|
#define _EXEC_H_
|
|
|
|
|
2008-12-09 23:10:07 +00:00
|
|
|
#include "api.h"
|
|
|
|
|
|
|
|
extern exec_flags_t g_exec_flags;
|
|
|
|
extern exec_flags_t g_exec_flags_last_used;
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2003-02-07 23:04:25 +00:00
|
|
|
int NSISCALL ExecuteCodeSegment(int pos, HWND hwndProgress); // returns 0 on success
|
2004-08-06 11:05:48 +00:00
|
|
|
int NSISCALL ExecuteCallbackFunction(int num); // returns 0 on success
|
2002-08-02 10:01:35 +00:00
|
|
|
|
2002-08-19 23:18:19 +00:00
|
|
|
#endif//_EXEC_H_
|