comparison anagram/ag1/aglib.h @ 0:13d2b8934445

Import AnaGram (near-)release tree into Mercurial.
author David A. Holland
date Sat, 22 Dec 2007 17:52:45 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:13d2b8934445
1 /*
2 * AnaGram, A System for Syntax Directed Programming
3 * Copyright 2006 David A. Holland. All Rights Reserved.
4 * See the file COPYING for license and usage terms.
5 *
6 * aglib.h
7 */
8
9 #ifndef AGLIB_H
10 #define AGLIB_H
11
12 #ifdef AG_ON_WINDOWS
13 #ifdef AG_EXE
14 #define AGLIBENTRY _Import
15 #else
16 #define AGLIBENTRY _Export
17 #endif
18 #endif
19
20 #ifdef AG_ON_UNIX
21 #define AGLIBENTRY
22 #endif
23
24 void AGLIBENTRY init(char *argv_0);
25 int AGLIBENTRY commandLineBuild(char *file);
26 void AGLIBENTRY agGui(char *file);
27
28 #endif /* AGLIB_H */