2016-01-28 14:52:40 +01:00
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* @par History
|
|
|
|
|
*/
|
2016-02-11 22:54:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef H_ESCRIPT_H
|
|
|
|
|
#define H_ESCRIPT_H
|
|
|
|
|
|
|
|
|
|
/*
|
2018-04-03 04:45:11 +02:00
|
|
|
GOTO/GOSUB support removed 9/19/1998 Syz
|
|
|
|
|
break statement and correct local handling makes them troublesome.
|
|
|
|
|
their need is dubious since loops can be labelled, and
|
|
|
|
|
break/continue can take a label.
|
2016-02-11 22:54:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define ESCRIPT_INCLUDE_GOTO 0
|
2016-02-19 19:26:35 +01:00
|
|
|
namespace Pol
|
|
|
|
|
{
|
|
|
|
|
namespace Bscript
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-02-11 22:54:43 +01:00
|
|
|
}
|
|
|
|
|
|
2016-02-19 19:26:35 +01:00
|
|
|
#endif // H_ESCRIPT_H
|