1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-26 17:36:57 +00:00

New function tgi_geterrormsg

git-svn-id: svn://svn.cc65.org/cc65/trunk@3125 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-06-15 09:08:39 +00:00
parent 191801d7a1
commit aa0c3bbf81
2 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,7 @@
;* */
;* */
;* */
;* (C) 2002-2003 Ullrich von Bassewitz */
;* (C) 2002-2004 Ullrich von Bassewitz */
;* Römerstraße 52 */
;* D-70794 Filderstadt */
;* EMail: uz@cc65.org */
@ -147,6 +147,7 @@ TGI_TEXT_VERTICAL = 1
.global _tgi_init
.global _tgi_done
.global _tgi_geterror
.global _tgi_geterrormsg
.global _tgi_clear
.global _tgi_getpagecount
.global _tgi_setviewpage

View File

@ -104,6 +104,9 @@ unsigned char __fastcall__ tgi_geterror (void);
* error.
*/
const char* __fastcall__ tgi_geterrormsg (unsigned char code);
/* Get an error message describing the error in code. */
void __fastcall__ tgi_clear (void);
/* Clear the screen. */