2006-10-28 19:45:02 +00:00
|
|
|
/*
|
|
|
|
* exec.h
|
|
|
|
*
|
|
|
|
* This file is a part of NSIS.
|
|
|
|
*
|
2007-12-22 09:41:57 +00:00
|
|
|
* Copyright (C) 1999-2008 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_
|
|
|
|
|
2004-03-29 20:21:00 +00:00
|
|
|
extern exec_flags g_exec_flags;
|
2007-09-18 22:02:44 +00:00
|
|
|
extern exec_flags 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_
|