This file is indexed.

/usr/include/xgks.h is in libxgks-dev 2.6.1+dfsg.2-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
/*
 *		Copyright IBM Corporation 1989
 *
 *                      All Rights Reserved
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose and without fee is hereby granted,
 * provided that the above copyright notice appear in all copies and that
 * both that copyright notice and this permission notice appear in
 * supporting documentation, and that the name of IBM not be
 * used in advertising or publicity pertaining to distribution of the
 * software without specific, written prior permission.
 *
 * IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
 * IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 * SOFTWARE.
 *
 *
 * University of Illinois at Urbana-Champaign
 * Department of Computer Science
 * 1304 W. Springfield Ave.
 * Urbana, IL	61801
 *
 * (C) Copyright 1987, 1988 by The University of Illinois Board of Trustees.
 * All rights reserved.
 *
 * Tool: X 11 Graphical Kernel System
 * Author: Gregory Scott Rogers
 * Author: Sung Hsien Ching Kelvin
 * Author: Yu Pan
 * 
 * Define file for : Standard GKS C-language binding 
 *
 * This header-file includes header-file <stdio.h>.
 * 
 * $Id: xgks.h,v 2.6 1993/03/27 04:26:53 steve Exp $
 * $__Header$
 */


#ifndef   GKS_H
#define   GKS_H

#include <stdio.h>			/* for FILE */

/* Gint - integer */
typedef int Gint;			/* this datatype must be defined by
					 * the implementation as a type
					 * suitable for containing integer
					 * values at least 16 bits long */

/* Glong - longer integer */
typedef int     Glong;


/* Gintlist - integer list */
typedef struct Gintlist {
    Gint            number;		/* number of integer in list */
    Gint           *integers;		/* array of integers */
} Gintlist;


/* Gchar - chatacter */
typedef char Gchar;			/* this datatype must be defined by
					 * the implementation as a type
					 * suitable for containing characters
					 * of at least 8 bits */


/* Gfloat - floating point number */
typedef float Gfloat;			/* this datatype must be defined by
					 * the implementation as a type
					 * suitable for containing float
					 * values at least 32 bits long */


/* Gredraw - workstation redraw state */
typedef enum Gredraw {
    GRD_GKS,				/* redraw due to GKS */
    GRD_X				/* redraw due to X */
}               Gredraw;


/* Gacf - attribute control flag */
typedef enum Gacf {
    GCURRENT,
    GSPECIFIED
} Gacf;


/* Gasf - aspect source flag */
typedef enum Gasf {
    GBUNDLED,
    GINDIVIDUAL
} Gasf;


/* Gasf - aspect source flags */
typedef struct Gasfs {
    Gasf            ln_type;		/* line type */
    Gasf            ln_width;		/* line width */
    Gasf            ln_colour;		/* line colour */
    Gasf            mk_type;		/* marker type */
    Gasf            mk_size;		/* marker size */
    Gasf            mk_colour;		/* marker colour */
    Gasf            tx_fp;		/* text font and precision */
    Gasf            tx_exp;		/* text expansion */
    Gasf            tx_space;		/* text character spacing */
    Gasf            tx_colour;		/* text colour */
    Gasf            fl_inter;		/* fill area interior style */
    Gasf            fl_style;		/* filll area style index */
    Gasf            fl_colour;		/* fill area colour */
} Gasfs;


/* Gattr - attributes used */
typedef enum Gattrs {
    GPOLYLINE,
    GPOLYMARKER,
    GTEXT,
    GFILLAREA
} Gattrs;


/* Gcstat - choice status */
typedef enum Gcstat {
    GC_OK,
    GC_NOCHOICE,
    GC_NONE
} Gcstat;


/* Gchoice - choice data */
typedef struct Gchoice {
    Gcstat          status;		/* choice status */
    Gint            choice;		/* choice number */
} Gchoice;


/* Gprflag - prompt flag */
typedef enum Gprflag {
    GPROFF,
    GPRON
}               Gprflag;


/* Gchoicerec - choice data record */
typedef union Gchoicerec {
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet1;
    struct {
	Gint            number;		/* number of alternatives */
	Gprflag        *enable;		/* array of prompts */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet2;
    struct {
	Gint            number;		/* number of choice strings */
	Gchar         **strings;	/* array of strings */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet3;
    struct {
	Gint            number;		/* number of choice strings */
	Gchar         **strings;	/* array of strings */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet4;
    struct {
	Gint            seg;		/* segment name */
	Gint            number;		/* number of alternatives */
	Gint           *pickids;	/* array of pick identifiers */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet5;
    /*
     * .... more for implementation defined PETs
     */
} Gchoicerec;


/* Gimode - input mode */
typedef enum Gimode {
    GREQUEST,
    GSAMPLE,
    GEVENT
} Gimode;


/* Gesw - echo switch */
typedef enum Gesw {
    GECHO,
    GNOECHO
} Gesw;


/* Glimit - coordinate limits */
typedef struct Glimit {
    Gfloat          xmin;		/* x minimum limit */
    Gfloat          xmax;		/* x maximum limit */
    Gfloat          ymin;		/* y minimum limit */
    Gfloat          ymax;		/* y maximum limit */
} Glimit;


/* Gchoicest - choice state */
typedef struct Gchoicest {
    Gimode          mode;		/* mode */
    Gesw            esw;		/* echo switch */
    Gchoice         choice;		/* choice data */
    Gint            pet;		/* prompt and echo type */
    Glimit          e_area;		/* echo area */
    Gchoicerec      record;		/* choice data record */
} Gchoicest;


/* Gclip - clipping indicator */
typedef enum Gclip {
    GCLIP,
    GNOCLIP
} Gclip;


/* Gcliprect - clipping rectangle */
typedef struct Gcliprec {
    Gclip           ind;		/* clipping indicator */
    Glimit          rec;		/* clipping rectangle */
} Gcliprec;


/* Gclrflag - clear control flag */
typedef enum Gclrflag {
    GCONDITIONALLY,
    GALWAYS
} Gclrflag;


/* Gcoavail - colour availablity */
typedef enum Gcoavail {
    GCOLOUR,
    GMONOCHROME
} Gcoavail;


/* Gcobunbl - colour bundle */
typedef struct Gcobundl {
    Gfloat          red;		/* red intensity */
    Gfloat          green;		/* green intensity */
    Gfloat          blue;		/* blue intensity */
} Gcobundl;


/* Gcofac - colour facilities */
typedef struct Gcofac {
    Gint            colours;		/* number of colours */
    Gcoavail        coavail;		/* colour availability */
    Gint            predefined;		/* number of predefined bundles */
} Gcofac;


/* Gcovaild - colour values valid */
typedef enum Gcovalid {
    GABSENT,
    GPRESENT
} Gcovalid;


/* Gcsw - coordinate switch */
typedef enum Gcsw {
    GWC,				/* world coordinates */
    GNDC				/* normalized device coordinates */
} Gcsw;


/* Gdefchoice - default choice data */
typedef struct Gdefchoice {
    Gint            choices;		/* maximum number of choices */
    Gintlist        pets;		/* list of prompt and echo types */
    Glimit          e_area;		/* default echo area */
    Gchoicerec      record;		/* default choice data record */
} Gdefchoice;


/* Gdefmode - deferral mode */
typedef enum Gdefmode {
    GASAP,				/* as soon as possible */
    GBNIG,				/* before next interaction globally */
    GBNIL,				/* before next interaction locally */
    GASTI				/* at some time in */
} Gdefmode;


/* Girgmode - implicit regeneration mode */
typedef enum Girgmode {
    GSUPPRESSED,
    GALLOWED
} Girgmode;


/* Gdefer - deferral state */
typedef struct Gdefer {
    Gdefmode        defmode;		/* defferral mode */
    Girgmode        irgmode;		/* implicit regeneration mode */
} Gdefer;


/* Gpoint - coordinate point */
typedef struct Gpoint {
    Gfloat          x;			/* x coordinate */
    Gfloat          y;			/* y coordinate */
}               Gpoint;


/* Gipoint - integer point */
typedef struct Gipoint {
    Gint            x;			/* x coordinate */
    Gint            y;			/* y coordinate */
} Gipoint;


/* Glnbundl - polyline bundle */
typedef struct Glnbundl {
    Gint            type;		/* line type */
    Gfloat          width;		/* linewidth scale factor */
    Gint            colour;		/* polyline colour index */
} Glnbundl;


/* Glnattr - polyline attributes */
typedef struct Glnattr {
    Gasf            type;		/* linetype ASF */
    Gasf            width;		/* linewidth ASF */
    Gasf            colour;		/* linecolour ASF */
    Gint            line;		/* line index */
    Glnbundl        bundl;		/* line bundle */
} Glnattr;


/* Gpfcf - polyline/fill area flag */
typedef enum Gpfcf {
    GPF_POLYLINE,
    GPF_FILLAREA
}               Gpfcf;


/* Gflinter - fill area interior style */
typedef enum Gflinter {
    GHOLLOW,
    GSOLID,
    GPATTERN,
    GHATCH
} Gflinter;


/* Gflbundl - fill area bundle */
typedef struct Gflbundl {
    Gflinter        inter;		/* fill area interior style */
    Gint            style;		/* fill area style index */
    Gint            colour;		/* fill area colour index */
} Gflbundl;


/* Gflattr - fill area attributes */
typedef struct Gflattr {
    Gasf            inter;		/* fill area interior style ASF */
    Gasf            style;		/* fill area style index ASF */
    Gasf            colour;		/* fill area colour ASF */
    Gint            fill;		/* fill area index */
    Gflbundl        bundl;		/* fill area bundle */
} Gflattr;


/* Glocrec - locator data record */
typedef union Glocrec {
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet1;
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet2;
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet3;
    struct {
	Gacf            acf;		/* attribute control flag */
	Glnattr         ln;		/* polyline attributes  */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet4;
    struct {
	Gpfcf           pfcf;		/* polyline/fill area control flag */
	Gacf            acf;		/* attribute control flag */
	union {
	    Glnattr         ln;		/* polyline attributes */
	    Gflattr         fl;		/* fill area attributes */
	}               attr;
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet5;
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet6;
    /* ... *//* more for implementatoin defined PETs */
}               Glocrec;


/* Gdefloc - default locator data */
typedef struct Gdefloc {
    Gpoint          position;		/* initial position */
    Gintlist        pets;		/* list of prompted echo types */
    Glimit          e_area;		/* default echo area */
    Glocrec         record;		/* default locator data record */
} Gdefloc;


/* Gpickrec - pick data record */
typedef union Gpickrec {
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet1;
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet2;
    struct {
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet3;
    /* ... *//* more for implementation defined PETs */
}               Gpickrec;


/* Gdefpick - default pick data */
typedef struct Gdefpick {
    Gintlist        pets;		/* list of prompt and echo types */
    Glimit          e_area;		/* default echo area */
    Gpickrec        record;		/* default pick data record */
} Gdefpick;


/* Gstringrec - string data record */
typedef union Gstringrec {
    struct {
	Gint            bufsiz;		/* buffer size */
	Gint            position;	/* initial cursor position */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet1;
    /* ... *//* more for implementation defined PETs */
}               Gstringrec;


/* Gdefstring - default string data */
typedef struct Gdefstring {
    Gint            bufsiz;		/* initial buffer size */
    Gintlist        pets;		/* list of prompt and echo types */
    Glimit          e_area;		/* default echo area */
    Gstringrec      record;		/* default string data record */
} Gdefstring;


/* Gmkbundl - polymarker bundle */
typedef struct Gmkbundl {
    Gint            type;		/* marker type */
    Gfloat          size;		/* marker size scale factor */
    Gint            colour;		/* polymarker colour index */
}               Gmkbundl;


/* Gmkattr - polymarker attributes */
typedef struct Gmkattr {
    Gasf            type;		/* marker type ASF */
    Gasf            size;		/* marker size ASF */
    Gasf            colour;		/* marker colour ASF */
    Gint            mark;		/* marker index */
    Gmkbundl        bundl;		/* marker bundle */
}               Gmkattr;


/* Gstrokerec - stroke data record */
typedef union Gstrokerec {
    struct {
	Gint            bufsiz;		/* input buffer size */
	Gint            editpos;	/* editing position */
	Gpoint          interval;	/* x,y interval */
	Gfloat          time;		/* time interval */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet1;
    struct {
	Gint            bufsiz;		/* input buffer size */
	Gint            editpos;	/* editing position */
	Gpoint          interval;	/* x,y interval */
	Gfloat          time;		/* time interval */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet2;
    struct {
	Gint            bufsiz;		/* input buffer size */
	Gint            editpos;	/* editing position */
	Gpoint          interval;	/* x,y interval */
	Gfloat          time;		/* time interval */
	Gacf            acf;		/* attribute control falg */
	Gmkattr         mk;		/* marker attributes */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet3;
    struct {
	Gint            bufsiz;		/* input buffer size */
	Gint            editpos;	/* editing position */
	Gpoint          interval;	/* x,y interval */
	Gfloat          time;		/* time interval */
	Gacf            acf;		/* attribute control falg */
	Glnattr         ln;		/* line attributes */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet4;
    /* ... *//* more for implementation defined PETs */
}               Gstrokerec;


/* Gdefstroke - default stroke data */
typedef struct Gdefstroke {
    Gint            bufsiz;		/* buffer size */
    Gintlist        pets;		/* list of prompt and echo types */
    Glimit          e_area;		/* adfault echo area */
    Gstrokerec      record;		/* default stroke data record */
} Gdefstroke;


/* Gvalrec - valuator data record */
typedef union Gvalrec {
    struct {
	Gfloat          low;		/* low range limit */
	Gfloat          high;		/* high range limit */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet1;
    struct {
	Gfloat          low;		/* low range limit */
	Gfloat          high;		/* high range limit */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet2;
    struct {
	Gfloat          low;		/* low range limit */
	Gfloat          high;		/* high range limit */
	Gchar          *data;		/* device/implementation dependent
					 * data */
    }               pet3;
    /* ... *//* more for implementation defined PETs */
}               Gvalrec;


/* Gdefval - default valuator data */
typedef struct Gdefval {
    Gfloat          value;		/* initial value */
    Gintlist        pets;		/* list of prompt and echo types */
    Glimit          e_area;		/* adfault echo area */
    Gvalrec         record;		/* default stroke data record */
} Gdefval;


/* Gdevunits - device coordinate units */
typedef enum Gdevunits {
    GDC_METRES,
    GDC_OTHER
} Gdevunits;


/* Gdspsize - display size */
typedef struct Gdspsize {
    Gdevunits       units;		/* device coordinate units */
    Gpoint          device;		/* device coordinate unit size */
    Gipoint         raster;		/* raster unit size */
} Gdspsize;


/* Gdspsurf - display surface */
typedef enum Gdspsurf {
    GEMPTY,
    GNOTEMPTY
} Gdspsurf;


/* Gescin - escape input data record */
typedef union Gescin {
    struct {
	Gint            dummy;		/* escape dependent data record */
    }               escid1;		/* name of the specific escape
					 * function */
    struct {
	Gint            dummy;		/* escape dependent data record */
    }               escid2;		/* name of the specifice escape
					 * function */
    /* .... *//* more for implementation defined PETS */
} Gescin;


/* Gescout - escape output data record */
typedef union Gescout {
    struct {
	Gint            dummy;		/* escape dependent data record */
    }               escid1;		/* name of the specific escape
					 * function */
    struct {
	Gint            dummy;		/* escape dependent data record */
    }               escid2;		/* name of the specifice escape
					 * function */
    /*
     * More for implementation defined PETS
     */
} Gescout;


/* Giclass - input class */
typedef enum Giclass {
    GNCLASS,
    GLOCATOR,
    GISTROKE,
    GVALUATOR,
    GCHOICE,
    GPICK,
    GISTRING
} Giclass;


/* Gcvent - event */
typedef struct Gevent {
    Gint            ws;			/* workstation */
    Gint            dev;		/* device number */
    Giclass         class;		/* event class */
} Gevent;


/* Gextent - text extent */
typedef struct Gextent {
    Gpoint          concat;		/* concatenation point */
    Gpoint          ll;			/* lower left corner */
    Gpoint          lr;			/* lower right corner */
    Gpoint          ul;			/* upper left corner */
    Gpoint          ur;			/* upper right corner */
} Gextent;


/* Gfile - FILE objects type */
typedef FILE Gfile;


/* Gflfac - fill area facilities */
typedef struct Gflfac {
    Gintlist        interiors;		/* list of available interior styles */
    Gintlist        hatches;		/* list of available styles */
    Gint            predefined;		/* number of predefined bundles */
} Gflfac;


/* Ggdpfac - GDP facilities */
typedef struct Ggdpfac {
    Gint            number;		/* number of GDPs */
    Gattrs         *attrs;		/* list of attributes used */
} Ggdpfac;


/* Ggdplist - GDP list */
typedef struct Ggdplist {
    Gint            number;		/* number of GDPs */
    Gint            (**functions) ();	/* array of points to GDP functions */
    Gint           *indices;		/* array of official registered GDP
					 * indices */
} Ggdplist;


/* Ggdprec - GDP data record */
typedef union Ggdprec {
    struct {
	Gint            dummy;		/* GDP dependent data record */
    }               gdpid1;		/* name of the specific GDP function */
    struct {
	Gint            dummy;		/* GDP dependent data record */
    }               gdpid2;		/* name of the specific GDP function */
    /*
     * More for implementation defined PETs
     */
} Ggdprec;


/* Ggksmit - GKS metafile item */
typedef struct Ggksmit {
    Gint            type;		/* item type */
    Gint            length;		/* item length */
} Ggksmit;


/* Gtxprec - text precision */
typedef enum Gtxprec {
    GSTRING,
    GCHAR,
    GSTROKE
}               Gtxprec;


/* Gtxfp - text font and precision */
typedef struct Gtxfp {
    Gint            font;		/* text font */
    Gtxprec         prec;		/* text precision */
}               Gtxfp;


/* Gindattr - individual attributes */
typedef struct Gindattr {
    Gint            lntype;		/* current line type */
    Gfloat          lnwidth;		/* current linewidth scale factor */
    Gint            lncolour;		/* current polyline colour index */
    Gint            mktype;		/* current marker type */
    Gfloat          mksize;		/* current marker size scale factor */
    Gint            mkcolour;		/* current polymarker colour */
    Gtxfp           fp;			/* current font and precision
					 * structure */
    Gfloat          chexp;		/* current character expansion factor */
    Gfloat          chspace;		/* current character spacing */
    Gint            txcolour;		/* current text colour index */
    Gflinter        flstyle;		/* current fill area interior style */
    Gint            flindex;		/* current fill area style index */
    Gint            flcolour;		/* current fill area colour index */
    Gasfs           asflist;		/* aspect source flags */
} Gindattr;


/* Ginqtype - inquiry type */
typedef enum Ginqtype {
    GSET,
    GREALIZED
} Ginqtype     , Gqtype;		/* two names due to an error in the C
					 * Binding */


/* Gistat - input status */
typedef enum Gistat {
    GOK,
    GNONE
} Gistat;


/* Glastev - last event */
typedef enum Glastev {
    GLAST,
    GNOTLAST
} Glastev;


/* Glevel - level of GKS */
typedef enum Glevel {
    GLMA = -3,
    GLMB,
    GLMC,
    GL0A,
    GL0B,
    GL0C,
    GL1A,
    GL1B,
    GL1C,
    GL2A,
    GL2B,
    GL2C
} Glevel;


/* Glnfac - polyline facilities */
typedef struct Glnfac {
    Gintlist        types;		/* list of available line types */
    Gint            widths;		/* number of line widths  AUG */
    Gfloat          nom;		/* nominal width */
    Gfloat          min;		/* minimum width */
    Gfloat          max;		/* maximum width */
    Gint            predefined;		/* number of predefined bundles */
} Glnfac;


/*
 * Glntype - line type.
 * The following are this implementation specific line style.
 */
#define GLN_LDASH	-3		/* Long dash (-- -- -- --) */
#define GLN_DDOTDASH	-2		/* Double-Dot-Dash (.._.._.._) */
#define GLN_SDASH	-1		/* short dash (-  -  -  -) */
/*
 * The folowing are standard defined.
 */
#define	GLN_SOLID	1
#define	GLN_DASH	2		/* medium dash (- - - - -) */
#define	GLN_DOT		3
#define	GLN_DOTDASH	4


/* Gloc - locator data */
typedef struct Gloc {
    Gint            transform;		/* normalization transformation
					 * number */
    Gpoint          position;		/* locator position */
}               Gloc;


/* Glocst - locator state */
typedef struct Glocst {
    Gimode          mode;		/* mode */
    Gesw            esw;		/* echo switch */
    Gloc            loc;		/* locator data */
    Gint            pet;		/* prompt and echo type */
    Glimit          e_area;		/* echo area */
    Glocrec         record;		/* locator data record */
}               Glocst;


/* Gmkfac - polymarker  facilities */
typedef struct Gmkfac {
    Gintlist        types;		/* list of available marker  types */
    Gint            sizes;		/* number of marker size */
    Gfloat          nom;		/* nominal size */
    Gfloat          min;		/* minimum size */
    Gfloat          max;		/* maximum size */
    Gint            predefined;		/* number of predefined bundles */
}               Gmkfac;


/* Gmktype - marker type */
#define	GMK_POINT	1
#define	GMK_PLUS	2
#define	GMK_STAR	3
#define	GMK_O		4
#define	GMK_X		5


/* Gmodtype - dynamic modification type */
typedef enum Gmodtype {
    GIRG,
    GIMM
}               Gmodtype;


/* Gmodseg - dynamic modification of segment attributes */
typedef struct Gmodseg {
    Gmodtype        transform;		/* transformation */
    Gmodtype        appear;		/* appearing (turning visible) */
    Gmodtype        disappear;		/* disappearing (turning invisible) */
    Gmodtype        highlight;		/* highlighting */
    Gmodtype        priority;		/* priority */
    Gmodtype        addition;		/* addition of primitive to segment */
    Gmodtype        deletion;		/* deletion of segment */
}               Gmodseg;


/* Gmodws - dynamic modification of workstation attributes */
typedef struct Gmodws {
    Gmodtype        line;		/* polyline */
    Gmodtype        mark;		/* polymarker */
    Gmodtype        text;		/* text */
    Gmodtype        fill;		/* fill area */
    Gmodtype        pat;		/* pattern */
    Gmodtype        colour;		/* colour */
    Gmodtype        wstran;		/* workstation transformation */
}               Gmodws;


/* Gnframe - new frame action at update */
/* Gstore - workstation storage of non-segment primitives state */
typedef enum Gnframe {
    GNO,
    GYES
}               Gnframe, Gstore;


/*  Gnumdev - number of input device */
typedef struct Gnumdev {
    Gint            locator;		/* locators */
    Gint            stroke;		/* stroke */
    Gint            valuator;		/* valuator */
    Gint            choice;		/* choice */
    Gint            pick;		/* pick */
    Gint            string;		/* string */
}               Gnumdev;


/* Gos - GKS operating state */
typedef enum Gos {
    GGKCL,				/* GKS closed */
    GGKOP,				/* GKS open */
    GWSOP,				/* workstation open */
    GWSAC,				/* workstation active */
    GSGOP				/* segment open */
}               Gos;


/* Gpstat - pick status */
typedef enum Gpstat {
    GP_OK,
    GP_NOPICK,
    GP_NONE
}               Gpstat;


/* Gpick - pick data */
typedef struct Gpick {
    Gpstat          status;		/* pick status */
    Gint            seg;		/* pick segment */
    Gint            pickid;		/* pick identifier */
}               Gpick;


/* Gpickst - pick state */
typedef struct Gpickst {
    Gimode          mode;		/* mode */
    Gesw            esw;		/* echo switch */
    Gpick           pick;		/* pick data */
    Gint            pet;		/* prompt and echo type */
    Glimit          e_area;		/* echo area */
    Gpickrec        record;		/* pick data record */
}               Gpickst;


/* Gtxpath - text path */
typedef enum Gtxpath {
    GTP_RIGHT,
    GTP_LEFT,
    GTP_UP,
    GTP_DOWN
}               Gtxpath;


/* Gtxhor - text alignment horizontal component */
typedef enum Gtxhor {
    GTH_NORMAL,
    GTH_LEFT,
    GTH_CENTRE,
    GTH_RIGHT
}               Gtxhor;


/* Gtxver - text alignment vertical component */
typedef enum Gtxver {
    GTV_NORMAL,
    GTV_TOP,
    GTV_CAP,
    GTV_HALF,
    GTV_BASE,
    GTV_BOTTOM
}               Gtxver;


/* Gtxalign - text alignment */
typedef struct Gtxalign {
    Gtxhor          hor;		/* horizontal component */
    Gtxver          ver;		/* vertival component */
}               Gtxalign;


/* Gpriattr - primary attributes */
typedef struct Gpriattr {
    Gint            plnindex;		/* current polyline index */
    Gint            pmkindex;		/* current polymarker index */
    Gint            txindex;		/* current text index */
    Gfloat          height;		/* current character height */
    Gpoint          up;			/* current character up vector */
    Gfloat          chwidth;		/* current character width */
    Gpoint          base;		/* current character base vector */
    Gtxpath         path;		/* current text path */
    Gtxalign        align;		/* current text alignment */
    Gint            flindex;		/* current fill area index */
    Gpoint          widthvec;		/* current pattern width vector */
    Gpoint          heightvec;		/* current pattern heigh vector */
    Gpoint          prp;		/* current pattern reference point */
}               Gpriattr;


/* Gptbundl - pattern bundle */
typedef struct Gptbundl {
    Gipoint         size;		/* pattern array size */
    Gint           *array;		/* pattern array */
}               Gptbundl;


/* Gpxarray - pixel array */
typedef struct Gpxarray {
    Gcovalid        covalid;		/* colour values valid */
    Gint           *array;		/* pixel array */
}               Gpxarray;


/* Gqloc - request locator */
typedef struct Gqloc {
    Gistat          status;		/* input status */
    Gloc            loc;		/* locator data */
}               Gqloc;


/* Gqstring - request string */
typedef struct Gqstring {
    Gistat          status;		/* input status */
    Gchar          *string;		/* string data */
}               Gqstring;


/* Gstroke - stroke data */
typedef struct Gstroke {
    Gint            transform;		/* normalization transformation
					 * number */
    Gint            n_points;		/* number of points in stroke */
    Gpoint         *points;		/* array of points in stroke */
}               Gstroke;


/* Gqstroke - request stroke */
typedef struct Gqstroke {
    Gistat          status;		/* input status */
    Gstroke         stroke;		/* stroke data */
}               Gqstroke;


/* Gqueue - queue information */
typedef struct Gqueue {
    Giclass         class;		/* event class */
    Gint            devno;		/* logical input device number */
}               Gqueue;


/* Gqval - request valuator */
typedef struct Gqval {
    Gistat          status;		/* input status */
    Gfloat          val;		/* valuator data */
}               Gqval;


/* Grect - coordinate of rectangle */
typedef struct Grect {
    Gpoint          ll;			/* lower left-hand corner */
    Gpoint          ur;			/* upper right-hand corner */
}               Grect;


/* Gregen - regeneratoin flag */
typedef enum Gregen {
    GPERFORM,
    GPOSTPONE
}               Gregen;


/* Gsegdet - segment detectability */
typedef enum Gsegdet {
    GUNDETECTABLE,
    GDETECTABLE
}               Gsegdet;


/* Gseghi - segment highlighting */
typedef enum Gseghi {
    GNORMAL,
    GHIGHLIGHTED
}               Gseghi;


/* Gsegvis - segment visibility */
typedef enum Gsegvis {
    GVISIBLE,
    GINVISIBLE
}               Gsegvis;


/* Gsegattr - segment attribute */
typedef struct Gsegattr {
    Gint            seg;		/* segment name */
    Gfloat          segtran[2][3];	/* segment transformation matrix */
    Gsegvis         vis;		/* visibility of segment */
    Gseghi          hilight;		/* highlighting of the segment */
    Gfloat          pri;		/* priority of the segment */
    Gsegdet         det;		/* detectability of the segment */
}               Gsegattr;


/* Gsimultev - simultaneous events */
typedef enum Gsimultev {
    GNOMORE,
    GMORE
}               Gsimultev;


/* Gstringst - string state */
typedef struct Gstringst {
    Gimode          mode;		/* mode */
    Gesw            esw;		/* echo switch */
    Gchar          *string;		/* string data */
    Gint            pet;		/* prompt and echo type */
    Glimit          e_area;		/* echo area */
    Gstringrec      record;		/* string data record */
}               Gstringst;


/* Gstrlist - string list */
typedef struct Gstrlist {
    Gint            number;		/* number of string in list */
    Gchar         **strings;		/* array of pointers to strings */
}               Gstrlist;


/* Gstrokest - stroke state */
typedef struct Gstrokest {
    Gimode          mode;		/* mode */
    Gesw            esw;		/* echo switch */
    Gstroke         stroke;		/* stroke data */
    Gint            pet;		/* prompt and echo type */
    Glimit          e_area;		/* echo area */
    Gstrokerec      record;		/* stroke data record */
}               Gstrokest;


/* Gtxbundl - text bundle */
typedef struct Gtxbundl {
    Gtxfp           fp;			/* font and precision */
    Gfloat          ch_exp;		/* character expansion */
    Gfloat          space;		/* character spacing */
    Gint            colour;		/* text colour */
}               Gtxbundl;


/* Gtxattr - text attributes */
typedef struct Gtxattr {
    Gasf            fp;			/* text font and precision ASF */
    Gasf            tx_exp;		/* text character expansion ASF */
    Gasf            space;		/* text character spacing ASF */
    Gasf            colour;		/* text colour ASF */
    Gint            text;		/* text index */
    Gtxbundl        bundl;		/* text bundle */
}               Gtxattr;


/* Gtxfac - text facility */
typedef struct Gtxfac {
    Gint            fps;		/* number of fonts and precisions */
    Gtxfp          *fp_list;		/* list of fonts and precisions */
    Gint            heights;		/* number of character heights */
    Gfloat          min_ht;		/* minimum height */
    Gfloat          max_ht;		/* maximum height */
    Gint            expansions;		/* number of character expansion
					 * factors */
    Gfloat          min_ex;		/* minimum expansion factor */
    Gfloat          max_ex;		/* maximum expansion factor */
    Gint            predefined;		/* number of predefined bundles */
}               Gtxfac;


/* Gvalst - valuator state */
typedef struct Gvalst {
    Gimode          mode;		/* mode */
    Gesw            esw;		/* echo switch */
    Gfloat          val;		/* valuator data */
    Gint            pet;		/* prompt and echo type */
    Glimit          e_area;		/* echo area */
    Gvalrec         record;		/* valuator data record */
}               Gvalst;



/* Gvpri - viewport input priority */
typedef enum Gvpri {
    GHIGHER,
    GLOWER
}               Gvpri;


/* Gwscat - workstation category */
typedef enum Gwscat {
    GINVALID = -1,
    GOUTPUT = 0,
    GINPUT,
    GOUTIN,
    GWISS,
    GMO,
    GMI
}               Gwscat;


/* Gwsclass - workstation classification */
typedef enum Gwsclass {
    GVECTOR,
    GRASTER,
    GOTHER
}               Gwsclass;


/* Gwsct - workstation connection and type */
typedef struct Gwsct {
    Gchar          *conn;		/* workstation connection */
    Gchar          *type;		/* workstation type */
}               Gwsct;


/* Gwsdus - workstation deferral and update state */
typedef struct Gwsdus {
    Gdefmode        defmode;		/* deferral mode */
    Gdspsurf        dspsurf;		/* display surface */
    Girgmode        irgmode;		/* implicit regeneratoin mode */
    Gnframe         nframe;		/* new frame action update */
}               Gwsdus;


/* Gwsmax - workstation maximum number */
typedef struct Gwsmax {
    Gint            open;		/* number of open workstations */
    Gint            active;		/* number of active workstations */
    Gint            assoc;		/* number of associated workstations */
}               Gwsmax;


/* Gwsstate - workstation state */
typedef enum Gwsstate {
    GINACTIVE,
    GACTIVE
}               Gwsstate;


/* Gwstable - length of workstation tables */
typedef struct Gwstables {
    Gint            line;		/* polyline tables */
    Gint            mark;		/* polymarker tables */
    Gint            text;		/* text tables */
    Gint            fill;		/* fill area tables */
    Gint            pat;		/* pattern tables */
    Gint            colour;		/* colour tables */
}               Gwstables;


/* Gwstus - workstation transformation update state */
typedef enum Gwstus {
    GNOTPENDING,
    GPENDING
}               Gwstus;


/* Gwstran - workstation transformation */
typedef struct Gwstran {
    Glimit          w;			/* window */
    Glimit          v;			/* viewport */
}               Gwstran;


/* Gwsti - workstation transformaton information */
typedef struct Gwsti {
    Gwstus          wstus;		/* workstation transformation update
					 * state */
    Gwstran         request;		/* request transformatoin */
    Gwstran         current;		/* current transformatoin */
}               Gwsti;


/*
 * Enumerated types for error checking:
 */
typedef enum Gerrmap {
    errnull,
    errgopengks,
    errgclosegks,
    errgopenws,
    errgclosews,
    errgactivatews,
    errgdeactivatews,
    errgclearws,
    errgredrawsegws,
    errgupdatews,
    errgsetdeferst,
    errgmessage,
    errgescredrawnotify,
    errgescsetcolourmask,
    errgescsetdcsize,
    errgescstoreprimi,
    errgescinqxattr,
    errgpolyline,
    errgpolymarker,
    errgtext,
    errgfillarea,
    errgcellarray,
    errggdp,
    errgsetlineind,
    errgsetlinetype,
    errgsetlinewidth,
    errgsetlinecolourind,
    errgsetmarkerind,
    errgsetmarkertype,
    errgsetmarkersize,
    errgsetmarkercolourind,
    errgsettextind,
    errgsettextfontprec,
    errgsetcharexpan,
    errgsetcharspace,
    errgsettextcolourind,
    errgsetcharheight,
    errgsetcharup,
    errgsettextpath,
    errgsettextalign,
    errgsetfillind,
    errgsetfillintstyle,
    errgsetfillstyleind,
    errgsetfillcolourind,
    errgsetpatsize,
    errgsetpatrefpt,
    errgsetasf,
    errgsetpickid,
    errgsetlinerep,
    errgsetmarkerrep,
    errgsetpatrep,
    errgsetfillrep,
    errgsettextrep,
    errgsetcolourrep,
    errgsetwindow,
    errgsetviewport,
    errgsetviewportinputpri,
    errgselntran,
    errgsetclip,
    errgsetwswindow,
    errgsetwsviewport,
    errgcreateseg,
    errgcloseseg,
    errgrenameseg,
    errgdelseg,
    errgdelsegws,
    errgassocsegws,
    errgcopysegws,
    errginsertseg,
    errgsetsegtran,
    errgsetvis,
    errgsethighlight,
    errgsetsegpri,
    errgsetdet,
    errgsetsegattr,
    errginitloc,
    errginitstroke,
    errginitval,
    errginitchoice,
    errginitpick,
    errginitstring,
    errgsetlocmode,
    errgsetstrokemode,
    errgsetvalmode,
    errgsetchoicemode,
    errgsetpickmode,
    errgsetstringmode,
    errgreqloc,
    errgreqstroke,
    errgreqval,
    errgreqchoice,
    errgreqpick,
    errgreqstring,
    errgsampleloc,
    errgsamplestroke,
    errgsampleval,
    errgsamplechoice,
    errgsamplepick,
    errgsamplestring,
    errgawaitevent,
    errgflushevents,
    errggetloc,
    errggetstroke,
    errggetval,
    errggetchoice,
    errggetpick,
    errggetstring,
    errgwritegksm,
    errggettypegksm,
    errgreadgksm,
    errggetgksm,
    errginterpret,
    errgevaltran,
    errgaccumtran,
    errgemergencyclosegks,
    errgerrorhand,
    errgerrorlog,
    errginqactivews,
    errginqasf,
    errginqassocws,
    errginqavailgdp,
    errginqavailwstypes,
    errginqchoicest,
    errginqclip,
    errginqcolourfacil,
    errginqcolourindices,
    errginqcolourrep,
    errginqcurntrannum,
    errginqdefchoice,
    errginqdefdeferst,
    errginqdefloc,
    errginqdefpick,
    errginqdefstring,
    errginqdefstroke,
    errginqdefval,
    errginqdisplayspacesize,
    errginqdisplaysize,
    errginqfillfacil,
    errginqfillindices,
    errginqfillrep,
    errginqgdp,
    errginqindivattr,
    errginqinputoverflow,
    errginqlevelgks,
    errginqlinefacil,
    errginqlineindices,
    errginqlinerep,
    errginqlocst,
    errginqmarkerfacil,
    errginqmarkerindices,
    errginqmarkerrep,
    errginqmaxntrannum,
    errginqmaxwssttables,
    errginqmodsegattr,
    errginqmodwsattr,
    errginqmoreevents,
    errginqnameopenseg,
    errginqntrannum,
    errginqntran,
    errginqnumavailinput,
    errginqnumsegpri,
    errginqopenws,
    errginqopst,
    errginqpatfacil,
    errginqpatindices,
    errginqpatrep,
    errginqcurpickid,
    errginqpickst,
    errginqpixel,
    errginqpixelarray,
    errginqpixelarraydim,
    errginqpredcolourrep,
    errginqpredfillrep,
    errginqpredlinerep,
    errginqpredmarkerrep,
    errginqpredpatrep,
    errginqpredtextrep,
    errginqprimattr,
    errginqsegattr,
    errginqsegnames,
    errginqsegnamesws,
    errginqstringst,
    errginqstrokest,
    errginqtextextent,
    errginqtextfacil,
    errginqtextindices,
    errginqtextrep,
    errginqvalst,
    errginqwscategory,
    errginqwsclass,
    errginqwsconntype,
    errginqwsdeferupdatest,
    errginqwsmaxnum,
    errginqwsst,
    errginqwstran
} Gerrmap;


typedef enum Gfuncerrmap {
    errXgksChoUpdatePrompt = 1000,
    errXgksEnqueueEvent,
    errXgksLocUpdatePrompt,
    errXgksStrUpdatePrompt,
    errXgksPicUpdatePrompt,
    errXgksInsertMesgPrimi,
    errXgksDuplicatePrimi,
    errXgksSegPrimiTran,
    errXgksStkUpdatePrompt,
    errXgksValUpdatePrompt,
    errXgksDistFillarea,
    errXgksInitWssFillArea,
    errXgksDistCellarray,
    errXgksExecData,
    errxPolyMarker,
    errxFillArea,
    errxInqPixelarray
} Gfuncerrmap;


/*
 * British spellings of GKS terms.
 *
 *	metre		meter
 *	centre		center
 *	colour		colour
 *	initialise	initialize	(not used in the code)
 */


#define GDC_METERS	GDC_METRES
#define GTH_CENTER	GTH_CENTRE
#define GCOLOR		GCOLOUR

#define	ginqcolorfacil		ginqcolourfacil
#define	ginqcolorrep		ginqcolourrep
#define	ginqcolorindices	ginqcolourindices
#define	ginqpredcolorrep	ginqpredcolourrep
#define	gsetcolorrep		gsetcolourrep
#define	gsetfillcolorind	gsetfillcolourind
#define	gsetlinecolorind	gsetlinecolourind
#define	gsetmarkercolorind	gsetmarkercolourind
#define	gsettextcolorind	gsettextcolourind
#define gescsetcolormask	gescsetcolourmask

#define	ln_color	ln_colour
#define	mk_color	mk_colour
#define	tx_color	tx_colour
#define	fl_color	fl_colour
#define	colors		colours
#define	color		colour
#define	lncolor		lncolour
#define	mkcolor		mkcolour
#define	txcolor		txcolour
#define	flcolor		flcolour


/*
 * Support for old function names:
 */
#define gxconfig(ws)	gescsetbackingstore(ws, 1)
#define gxname(name)	gescsetprogname(name)


/*
 * Declarations of non-int functions:
 */

#ifndef PROTO
#   define PROTO(x)	()
#endif

extern void gescsetbackingstore PROTO((Gint ws, Gint i));
extern void gescsetprogname     PROTO((Gchar *name));

#endif