-
Notifications
You must be signed in to change notification settings - Fork 1
/
asmerr.h
28 lines (23 loc) · 1.13 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
#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
*
*****************************************************************************/
extern void WrErrorString(char *Message, char *Add, Boolean Warning, Boolean Fatal);
extern void WrError(Word Num);
extern void WrXError(Word Num, const char *Message);
#endif /* _ASMERR_H */