1 /* assembler.h
2  *
3  * $Id$
4  *
5  * Notice: This header file contains declarations of functions and types that
6  * are just used internally. All library functions and types that are supposed
7  * to be publicly accessable are defined in ./src/ming.h.
8  */
9 
10 #ifndef SWF_ASSEMBLER_H_INCLUDED
11 #define SWF_ASSEMBLER_H_INCLUDED
12 
13 #include "ming.h"
14 #include "compile.h"
15 
16 extern Buffer asmBuffer;
17 
18 void bufferPatchLength(Buffer buffer, int len);
19 int bufferBranchTarget(Buffer buffer, char *label);
20 
21 #endif /* SWF_ASSEMBLER_H_INCLUDED */
22