-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcommandserrors.h
More file actions
26 lines (20 loc) · 790 Bytes
/
commandserrors.h
File metadata and controls
26 lines (20 loc) · 790 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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef __amigaos4__
#include <proto/exec.h>
#endif
#include "amosKittens.h"
extern char *(*onError)(char *ptr);
extern char *onErrorBreak(char *ptr);
extern char *onErrorGoto(char *ptr);
extern char *onErrorProc(char *ptr);
extern char *errErrStr(nativeCommand *err, char *ptr);
extern char *errTrap(nativeCommand *err, char *ptr);
extern char *errErrTrap(nativeCommand *err, char *ptr);
extern char *errError(nativeCommand *err, char *ptr);
extern char *errErrn(nativeCommand *err, char *ptr);
extern char *errOnError(nativeCommand *err, char *ptr);
extern char *errResumeLabel(nativeCommand *err, char *ptr);
extern char *errResumeNext(nativeCommand *err, char *ptr);
extern char *errResume(nativeCommand *err, char *ptr);