forked from Macroassembler-AS/asl-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asmerr.h
37 lines (29 loc) · 1.44 KB
/
asmerr.h
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
#ifndef _ASMERR_H
#define _ASMERR_H
/* asmerr.h */
/*****************************************************************************/
/* AS-Portierung */
/* */
/* Error Handling Functions */
/* */
/*****************************************************************************/
/* $Id: asmerr.h,v 1.2 2016/08/30 09:53:46 alfred Exp $ */
/*****************************************************************************
* $Log: asmerr.h,v $
* Revision 1.2 2016/08/30 09:53:46 alfred
* - make string argument const
*
* Revision 1.1 2008/01/02 22:32:21 alfred
* - better heap checking for DOS target
*
*****************************************************************************/
#include "datatypes.h"
struct sLineComp;
struct sStrComp;
extern void WrErrorString(char *Message, char *Add, Boolean Warning, Boolean Fatal,
const char *pExtendError, const struct sLineComp *pLineComp);
extern void WrError(Word Num);
extern void WrXError(Word Num, const char *pExtError);
extern void WrXErrorPos(Word Num, const char *pExtError, const struct sLineComp *pLineComp);
extern void WrStrErrorPos(Word Num, const struct sStrComp *pStrComp);
#endif /* _ASMERR_H */