| | 1 | /* |
| | 2 | * Copyright (c) 1992, 2002 Michael J. Roberts. All Rights Reserved. |
| | 3 | * |
| | 4 | * Please see the accompanying license file, LICENSE.TXT, for information |
| | 5 | * on using and copying this software. |
| | 6 | */ |
| | 7 | /* |
| | 8 | Name |
| | 9 | tcg.h - stub for tcg routines |
| | 10 | Function |
| | 11 | Declaration of TADS/Graphic functions. |
| | 12 | Notes |
| | 13 | These routines do nothing; they are merely to allow linking the |
| | 14 | normal TADS/Compiler without having to have separate drivers for |
| | 15 | the graphical and non-graphical versions. |
| | 16 | */ |
| | 17 | |
| | 18 | #ifndef TCG_H |
| | 19 | #define TCG_H |
| | 20 | |
| | 21 | #include "os.h" |
| | 22 | #include "err.h" |
| | 23 | #include "prs.h" |
| | 24 | |
| | 25 | /* tcgcomp - graphical phase of compilation: do nothing in text version */ |
| | 26 | void tcgcomp(errcxdef *ec, prscxdef *pctx, const char *infile); |
| | 27 | |
| | 28 | #endif |