File: tcg.h

package info (click to toggle)
qtads 2.1.6-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,156 kB
  • ctags: 18,767
  • sloc: cpp: 133,078; ansic: 26,048; xml: 18; makefile: 11
file content (28 lines) | stat: -rw-r--r-- 709 bytes parent folder | download | duplicates (13)
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
/* 
 *   Copyright (c) 1992, 2002 Michael J. Roberts.  All Rights Reserved.
 *   
 *   Please see the accompanying license file, LICENSE.TXT, for information
 *   on using and copying this software.  
 */
/*
Name
  tcg.h - stub for tcg routines
Function
  Declaration of TADS/Graphic functions.
Notes
  These routines do nothing; they are merely to allow linking the
  normal TADS/Compiler without having to have separate drivers for
  the graphical and non-graphical versions.
*/

#ifndef TCG_H
#define TCG_H

#include "os.h"
#include "err.h"
#include "prs.h"

/* tcgcomp - graphical phase of compilation: do nothing in text version */
void tcgcomp(errcxdef *ec, prscxdef *pctx, const char *infile);

#endif