-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrb_global.h
More file actions
50 lines (37 loc) · 974 Bytes
/
Copy pathrb_global.h
File metadata and controls
50 lines (37 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* -HEADER----------------------------------------------------------------------
RapidBATCH 6.0
Copyright (C) 2008, 2009 by Phorward Software Technologies, Jan Max Meyer
http://www.phorward-software.com ++ mail@phorward-software.com
File: rb_global.h
Author: Jan Max Meyer
Usage: Global declarations
----------------------------------------------------------------------------- */
#ifndef RB_GLOBAL_H
#define RB_GLOBAL_H
/*
* Includes
*/
#include <phorward.h>
#include "xml.h"
/*
* Defines
*/
#define RB_TRUE 0
#define RB_FALSE -1
/* Default allocation step size in bytes */
#define SYMTAB_SIZE 64
#define MALLOC_STEP 128
/* Number of user function parameters */
#define MAX_USERFUNC_PARMS 64
typedef char status;
typedef char byte;
typedef unsigned long vm_addr;
#include "rb_val.h"
#include "rb_var.h"
#include "rb_vm.h"
#include "rb_comp.h"
#include "rb_comp.parser.h"
#include "rb_native.h"
#include "xml.h"
#include "rb_proto.h"
#endif