~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to terps/alan2/args.h

  • Committer: Package Import Robot
  • Author(s): Sylvain Beucler
  • Date: 2013-07-28 13:38:56 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130728133856-4k6uc864wzsnrx04
Tags: 2011.1a-1
* New upstream release
* Alan 2 interpreter is now Free Software, include it
* Update fonts package names in dependencies (Closes: #715160)
* Bump Standards-Version to 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*----------------------------------------------------------------------*\
 
2
 
 
3
  args.h
 
4
 
 
5
  Argument handling 
 
6
 
 
7
\*----------------------------------------------------------------------*/
 
8
 
 
9
#ifdef __amiga__
 
10
 
 
11
#include <libraries/dosextens.h>
 
12
 
 
13
#ifdef AZTEC_C
 
14
extern struct FileHandle *con;
 
15
#else
 
16
 
 
17
#include <intuition/intuition.h>
 
18
#include <workbench/startup.h>
 
19
 
 
20
extern struct WBStartup *_WBenchMsg; /* From libnix */
 
21
 
 
22
extern BPTR window;
 
23
extern BPTR cd;
 
24
 
 
25
#endif
 
26
#endif
 
27
 
 
28
#ifndef PROGNAME
 
29
#define PROGNAME "alan2"
 
30
#endif
 
31
 
 
32
#ifdef _PROTOTYPES_
 
33
extern void args(int argc, char *argv[]);
 
34
#else
 
35
extern void args();
 
36
#endif
 
37