]> git.sur5r.net Git - cc65/blob - src/grc/grc.h
Error message for negative array sizes.
[cc65] / src / grc / grc.h
1
2 /* I hope that no one will be able to create a .grc bigger than this... */
3 #define BLOODY_BIG_BUFFER 65000
4
5 struct menuitem {
6         char *name;
7         char *type;
8         char *target;
9         struct menuitem *next; };
10
11 struct menu {
12         char *name;
13         int top, left;
14         int bot, right;
15         char *type;
16         struct menuitem *item; };
17
18 struct appheader {
19         int year,month,day,hour,min;
20         int mode;
21         int dostype;
22         int geostype;
23         int structure;
24         char *dosname;
25         char *classname;
26         char *version;
27         char *author;
28         char *info; };
29
30 const char *mainToken[] = {
31         "MENU", "HEADER", "ICON", "DIALOG", "VLIR", "" };
32
33 const char *hdrFTypes[] = {
34         "APPLICATION", "AUTO_EXEC", "DESK_ACC", "ASSEMBLY", "DISK_DEVICE", "PRINTER", "SYSTEM", "" };
35
36 const char *hdrFields[] = {
37         "author", "info", "date", "dostype", "mode", "structure", "" };
38
39 const char *hdrDOSTp[] = {
40         "seq", "SEQ", "prg", "PRG", "usr", "USR", "" };
41
42 const char *hdrStructTp[] = {
43         "seq", "SEQ", "vlir", "VLIR", "" };
44
45 const char *hdrModes[] = {
46         "any", "40only", "80only", "c64only", "" };
47
48 const int BSWTab[] = { 0,
49         0x005, 0x007, 0x00b, 0x011, 0x017,
50         0x01d, 0x023, 0x025, 0x029, 0x02d, 0x033, 0x039, 0x03c, 0x041, 0x043,
51         0x04a, 0x04f, 0x052, 0x056, 0x05a, 0x05f, 0x063, 0x068, 0x06d, 0x072,
52         0x077, 0x079, 0x07c, 0x080, 0x084, 0x088, 0x08e, 0x094, 0x09a, 0x09f,
53         0x0a4, 0x0a9, 0x0ad, 0x0b1, 0x0b6, 0x0bc, 0x0be, 0x0c2, 0x0c8, 0x0cc,
54         0x0d4, 0x0da, 0x0e0, 0x0e5, 0x0eb, 0x0f0, 0x0f5, 0x0f9, 0x0fe, 0x104,
55         0x10c, 0x112, 0x118, 0x11e, 0x121, 0x129, 0x12c, 0x132, 0x13a, 0x13e,
56         0x143, 0x148, 0x14d, 0x152, 0x157, 0x15a, 0x15f, 0x164, 0x166, 0x168,
57         0x16d, 0x16f, 0x177, 0x17c, 0x182, 0x187, 0x18c, 0x18f, 0x193, 0x196,
58         0x19b, 0x1a1, 0x1a9, 0x1af, 0x1b4, 0x1ba, 0x1be, 0x1c0, 0x1c4, 0x1ca,
59         0x1d2, 0x1dd };
60
61 const unsigned char icon1[] = {
62          255, 255, 255, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1,
63                         128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1,
64                         128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1,
65                         128, 0, 1, 128, 0, 1, 128, 0, 1, 128, 0, 1, 255, 255, 255 };
66
67 char *ProgName; // for AbEnd, later remove and use common/cmdline.h
68
69 char *outputCName=NULL, *outputSName=NULL, *outputVName=NULL;
70 FILE *outputCFile, *outputSFile, *outputVFile;
71 int CFnum=0, SFnum=0, VFnum=0;
72 int forceFlag=0;
73 char outputCMode[2]="w";
74 char outputSMode[2]="w";
75 char outputVMode[2]="w";