Import J Hoppe's 20090427 release from http://retrocmp.com/tools/macro-11-on-windows

This commit is contained in:
Sergey Svishchev
2013-02-15 23:50:38 +04:00
parent 3b8e141917
commit 6a2afc3fa7
34 changed files with 8705 additions and 7735 deletions

31
mlb.h
View File

@@ -40,23 +40,26 @@ DAMAGE.
/* Routines to open and read entries from a macro library */
typedef struct mlbent
{
char *label;
unsigned long position;
int length;
typedef struct mlbent {
char *label;
unsigned long position;
int length;
} MLBENT;
typedef struct mlb
{
FILE *fp;
MLBENT *directory;
int nentries;
typedef struct mlb {
FILE *fp;
MLBENT *directory;
int nentries;
} MLB;
extern MLB *mlb_open(char *name);
extern BUFFER *mlb_entry(MLB *mlb, char *name);
extern void mlb_close(MLB *mlb);
extern void mlb_extract(MLB *mlb);
extern MLB *mlb_open(
char *name);
extern BUFFER *mlb_entry(
MLB *mlb,
char *name);
extern void mlb_close(
MLB *mlb);
extern void mlb_extract(
MLB *mlb);
#endif /* MLB_H */