blob: 908bb5a6738908f23a7122dcdf51c47aaf33c921 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MARKERS_H
#define MARKERS_H
#include "machine_type.h"
#include "output.h"
#include "datatypes.h"
void* initmarkers();
int parsemarkerfile(tMarkers* markers,char* filename);
tInt8 gotomask(tOutput* output,tMarkers* markers,tUInt64* cursorpos);
#endif
|