Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199610.adf » Regulars » WimpC/!RAPS/h/AULib
WimpC/!RAPS/h/AULib
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Recent acquisitions » Acorn ADFS disks » adfs_AcornUser_199610.adf » Regulars |
Filename: | WimpC/!RAPS/h/AULib |
Read OK: | ✔ |
File size: | 0CB4 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
/* AULib.h - a header file for the Acorn User WIMP C library */ #ifndef AULIB_H #define AULIB_H /* #Include the appropriate files - swis.h and kernel.h hold the information * we need to call SWI functions from within C */ #include <stdio.h> #include <string.h> #include <stdlib.h> #include "swis.h" #include "kernel.h" /* A few #defines to set up some constants */ #define IBAR_ONRIGHT -1 #define IBAR_ONLEFT -2 #define IBAR_PRIOR_APP 0 /* #Defines for icon flags */ #define ICON_ISTEXT 1u << 0 #define ICON_ISSPRITE 1u << 1 #define ICON_HASBORDER 1u << 2 #define ICON_HCENTRE 1u << 3 #define ICON_VCENTRE 1u << 4 #define ICON_ISFILLED 1u << 5 #define ICON_CLICKNOTIFIESONCE 3u << 12 /* These are for a StyleGuide-compliant square iconbar icon - without text */ #define IBAR_BBOX_MINX 0 #define IBAR_BBOX_MINY 0 #define IBAR_BBOX_MAXX 68 #define IBAR_BBOX_MAXY 68 /* These are for a StyleGuide-compliant square iconbar icon - with text */ #define IBART_BBOX_MINX 0 #define IBART_BBOX_MINY 20 #define IBART_BBOX_MAXX 68 #define IBART_BBOX_MAXY 84 /* #Defines for menu creation */ #define MENU_TITLEFORE 7u #define MENU_TITLEBACK 2u << 8 #define MENU_WORKFORE 7u << 16 #define MENU_WORKBACK 0u << 24 /* these define colours */ #define MENU_TICK 1u << 0 #define MENU_DOTTED 1u << 1 #define MENU_LASTITEM 1u << 7 #define MENU_SHADED 1u << 22 #define MENUITEM_FORE 7u << 24 #define MENUITEM_BACK 0u << 28 #define MENU_WIDTH 172 /* could be more intelligent, but it's a start */ #define MENU_HEIGHT 44 /* by order of the Style Guide */ #define MENU_VERTGAP 0 /* Sizes for block definitions */ #define ICON_BLOCK_SIZE 40 /* Structure definitions */ typedef struct window_data { int win_handle; unsigned char *buffer; unsigned char *workspace; char *win_name; } window_data; typedef struct menu_element { long int flags; long int submenu; long int menu_iconflags; char menu_text[12]; struct menu_element *next_menuelem; } menu_element; typedef struct menu_data { char title[12]; int size; long int colours; long int width; long int height; long int vert_gap; unsigned char* datablock; menu_element *next_menuelem; } menu_data; /* Prototyping */ extern int au_initialise(int, char *, long int[]); extern void au_closedown(int); extern int au_create_iconbar_icon(int, unsigned long int, unsigned long int, char *); extern void au_wordtobyte(unsigned long int, unsigned char[], int); extern unsigned long int au_bytetoword(unsigned char[], int); extern void au_opentemplate(char *); extern void au_closetemplate(void); extern int au_loadtemplate(char *, window_data *, int); extern int au_report_error(int, char *, int, char *); extern void au_openwin_from_templatedata(window_data *, long int); extern int au_wimp_poll(int, unsigned char *); extern void au_icon_text_change(char *, unsigned long int, unsigned long int); extern char *au_get_ptr_to_icontext(unsigned long int, unsigned long int); extern void au_buildmenu(char *, menu_data *); extern void au_addtomenu(char *, long int, long int, long int, menu_data *); extern void au_createmenu(menu_data *); extern void au_openmenu(menu_data *, int, int); extern void au_icon_get_text(char *, unsigned long int, unsigned long int); extern void au_losecaret(void); #endif
00000000 2f 2a 20 41 55 4c 69 62 2e 68 20 2d 20 61 20 68 |/* AULib.h - a h| 00000010 65 61 64 65 72 20 66 69 6c 65 20 66 6f 72 20 74 |eader file for t| 00000020 68 65 20 41 63 6f 72 6e 20 55 73 65 72 20 57 49 |he Acorn User WI| 00000030 4d 50 20 43 20 6c 69 62 72 61 72 79 20 2a 2f 0a |MP C library */.| 00000040 0a 23 69 66 6e 64 65 66 20 41 55 4c 49 42 5f 48 |.#ifndef AULIB_H| 00000050 0a 23 64 65 66 69 6e 65 20 41 55 4c 49 42 5f 48 |.#define AULIB_H| 00000060 0a 0a 2f 2a 20 23 49 6e 63 6c 75 64 65 20 74 68 |../* #Include th| 00000070 65 20 61 70 70 72 6f 70 72 69 61 74 65 20 66 69 |e appropriate fi| 00000080 6c 65 73 20 2d 20 73 77 69 73 2e 68 20 61 6e 64 |les - swis.h and| 00000090 20 6b 65 72 6e 65 6c 2e 68 20 68 6f 6c 64 20 74 | kernel.h hold t| 000000a0 68 65 20 69 6e 66 6f 72 6d 61 74 69 6f 6e 0a 20 |he information. | 000000b0 2a 20 77 65 20 6e 65 65 64 20 74 6f 20 63 61 6c |* we need to cal| 000000c0 6c 20 53 57 49 20 66 75 6e 63 74 69 6f 6e 73 20 |l SWI functions | 000000d0 66 72 6f 6d 20 77 69 74 68 69 6e 20 43 20 2a 2f |from within C */| 000000e0 0a 0a 23 69 6e 63 6c 75 64 65 20 3c 73 74 64 69 |..#include <stdi| 000000f0 6f 2e 68 3e 0a 23 69 6e 63 6c 75 64 65 20 3c 73 |o.h>.#include <s| 00000100 74 72 69 6e 67 2e 68 3e 0a 23 69 6e 63 6c 75 64 |tring.h>.#includ| 00000110 65 20 3c 73 74 64 6c 69 62 2e 68 3e 0a 23 69 6e |e <stdlib.h>.#in| 00000120 63 6c 75 64 65 20 22 73 77 69 73 2e 68 22 0a 23 |clude "swis.h".#| 00000130 69 6e 63 6c 75 64 65 20 22 6b 65 72 6e 65 6c 2e |include "kernel.| 00000140 68 22 0a 0a 2f 2a 20 41 20 66 65 77 20 23 64 65 |h"../* A few #de| 00000150 66 69 6e 65 73 20 74 6f 20 73 65 74 20 75 70 20 |fines to set up | 00000160 73 6f 6d 65 20 63 6f 6e 73 74 61 6e 74 73 20 2a |some constants *| 00000170 2f 0a 0a 23 64 65 66 69 6e 65 20 49 42 41 52 5f |/..#define IBAR_| 00000180 4f 4e 52 49 47 48 54 09 2d 31 0a 23 64 65 66 69 |ONRIGHT.-1.#defi| 00000190 6e 65 20 49 42 41 52 5f 4f 4e 4c 45 46 54 09 2d |ne IBAR_ONLEFT.-| 000001a0 32 0a 23 64 65 66 69 6e 65 20 49 42 41 52 5f 50 |2.#define IBAR_P| 000001b0 52 49 4f 52 5f 41 50 50 09 30 0a 0a 2f 2a 20 23 |RIOR_APP.0../* #| 000001c0 44 65 66 69 6e 65 73 20 66 6f 72 20 69 63 6f 6e |Defines for icon| 000001d0 20 66 6c 61 67 73 20 2a 2f 0a 23 64 65 66 69 6e | flags */.#defin| 000001e0 65 20 49 43 4f 4e 5f 49 53 54 45 58 54 09 31 75 |e ICON_ISTEXT.1u| 000001f0 20 3c 3c 20 30 0a 23 64 65 66 69 6e 65 20 49 43 | << 0.#define IC| 00000200 4f 4e 5f 49 53 53 50 52 49 54 45 09 31 75 20 3c |ON_ISSPRITE.1u <| 00000210 3c 20 31 0a 23 64 65 66 69 6e 65 20 49 43 4f 4e |< 1.#define ICON| 00000220 5f 48 41 53 42 4f 52 44 45 52 09 31 75 20 3c 3c |_HASBORDER.1u <<| 00000230 20 32 0a 23 64 65 66 69 6e 65 20 49 43 4f 4e 5f | 2.#define ICON_| 00000240 48 43 45 4e 54 52 45 09 31 75 20 3c 3c 20 33 0a |HCENTRE.1u << 3.| 00000250 23 64 65 66 69 6e 65 20 49 43 4f 4e 5f 56 43 45 |#define ICON_VCE| 00000260 4e 54 52 45 09 31 75 20 3c 3c 20 34 0a 23 64 65 |NTRE.1u << 4.#de| 00000270 66 69 6e 65 20 49 43 4f 4e 5f 49 53 46 49 4c 4c |fine ICON_ISFILL| 00000280 45 44 09 31 75 20 3c 3c 20 35 0a 23 64 65 66 69 |ED.1u << 5.#defi| 00000290 6e 65 20 49 43 4f 4e 5f 43 4c 49 43 4b 4e 4f 54 |ne ICON_CLICKNOT| 000002a0 49 46 49 45 53 4f 4e 43 45 09 33 75 20 3c 3c 20 |IFIESONCE.3u << | 000002b0 31 32 20 0a 0a 2f 2a 20 54 68 65 73 65 20 61 72 |12 ../* These ar| 000002c0 65 20 66 6f 72 20 61 20 53 74 79 6c 65 47 75 69 |e for a StyleGui| 000002d0 64 65 2d 63 6f 6d 70 6c 69 61 6e 74 20 73 71 75 |de-compliant squ| 000002e0 61 72 65 20 69 63 6f 6e 62 61 72 20 69 63 6f 6e |are iconbar icon| 000002f0 20 2d 20 77 69 74 68 6f 75 74 20 74 65 78 74 20 | - without text | 00000300 2a 2f 0a 23 64 65 66 69 6e 65 20 49 42 41 52 5f |*/.#define IBAR_| 00000310 42 42 4f 58 5f 4d 49 4e 58 09 30 0a 23 64 65 66 |BBOX_MINX.0.#def| 00000320 69 6e 65 20 49 42 41 52 5f 42 42 4f 58 5f 4d 49 |ine IBAR_BBOX_MI| 00000330 4e 59 09 30 0a 23 64 65 66 69 6e 65 20 49 42 41 |NY.0.#define IBA| 00000340 52 5f 42 42 4f 58 5f 4d 41 58 58 09 36 38 0a 23 |R_BBOX_MAXX.68.#| 00000350 64 65 66 69 6e 65 20 49 42 41 52 5f 42 42 4f 58 |define IBAR_BBOX| 00000360 5f 4d 41 58 59 09 36 38 0a 0a 2f 2a 20 54 68 65 |_MAXY.68../* The| 00000370 73 65 20 61 72 65 20 66 6f 72 20 61 20 53 74 79 |se are for a Sty| 00000380 6c 65 47 75 69 64 65 2d 63 6f 6d 70 6c 69 61 6e |leGuide-complian| 00000390 74 20 73 71 75 61 72 65 20 69 63 6f 6e 62 61 72 |t square iconbar| 000003a0 20 69 63 6f 6e 20 2d 20 77 69 74 68 20 74 65 78 | icon - with tex| 000003b0 74 20 2a 2f 0a 23 64 65 66 69 6e 65 20 49 42 41 |t */.#define IBA| 000003c0 52 54 5f 42 42 4f 58 5f 4d 49 4e 58 09 30 0a 23 |RT_BBOX_MINX.0.#| 000003d0 64 65 66 69 6e 65 20 49 42 41 52 54 5f 42 42 4f |define IBART_BBO| 000003e0 58 5f 4d 49 4e 59 09 32 30 0a 23 64 65 66 69 6e |X_MINY.20.#defin| 000003f0 65 20 49 42 41 52 54 5f 42 42 4f 58 5f 4d 41 58 |e IBART_BBOX_MAX| 00000400 58 09 36 38 0a 23 64 65 66 69 6e 65 20 49 42 41 |X.68.#define IBA| 00000410 52 54 5f 42 42 4f 58 5f 4d 41 58 59 09 38 34 0a |RT_BBOX_MAXY.84.| 00000420 0a 2f 2a 20 23 44 65 66 69 6e 65 73 20 66 6f 72 |./* #Defines for| 00000430 20 6d 65 6e 75 20 63 72 65 61 74 69 6f 6e 20 2a | menu creation *| 00000440 2f 0a 0a 23 64 65 66 69 6e 65 20 4d 45 4e 55 5f |/..#define MENU_| 00000450 54 49 54 4c 45 46 4f 52 45 09 37 75 0a 23 64 65 |TITLEFORE.7u.#de| 00000460 66 69 6e 65 20 4d 45 4e 55 5f 54 49 54 4c 45 42 |fine MENU_TITLEB| 00000470 41 43 4b 09 32 75 20 3c 3c 20 38 0a 23 64 65 66 |ACK.2u << 8.#def| 00000480 69 6e 65 20 4d 45 4e 55 5f 57 4f 52 4b 46 4f 52 |ine MENU_WORKFOR| 00000490 45 09 37 75 20 3c 3c 20 31 36 0a 23 64 65 66 69 |E.7u << 16.#defi| 000004a0 6e 65 20 4d 45 4e 55 5f 57 4f 52 4b 42 41 43 4b |ne MENU_WORKBACK| 000004b0 09 30 75 20 3c 3c 20 32 34 20 2f 2a 20 74 68 65 |.0u << 24 /* the| 000004c0 73 65 20 64 65 66 69 6e 65 20 63 6f 6c 6f 75 72 |se define colour| 000004d0 73 20 2a 2f 0a 23 64 65 66 69 6e 65 20 4d 45 4e |s */.#define MEN| 000004e0 55 5f 54 49 43 4b 09 31 75 20 3c 3c 20 30 0a 23 |U_TICK.1u << 0.#| 000004f0 64 65 66 69 6e 65 20 4d 45 4e 55 5f 44 4f 54 54 |define MENU_DOTT| 00000500 45 44 09 31 75 20 3c 3c 20 31 0a 23 64 65 66 69 |ED.1u << 1.#defi| 00000510 6e 65 20 4d 45 4e 55 5f 4c 41 53 54 49 54 45 4d |ne MENU_LASTITEM| 00000520 09 31 75 20 3c 3c 20 37 0a 23 64 65 66 69 6e 65 |.1u << 7.#define| 00000530 20 4d 45 4e 55 5f 53 48 41 44 45 44 09 31 75 20 | MENU_SHADED.1u | 00000540 3c 3c 20 32 32 0a 0a 23 64 65 66 69 6e 65 20 4d |<< 22..#define M| 00000550 45 4e 55 49 54 45 4d 5f 46 4f 52 45 09 37 75 20 |ENUITEM_FORE.7u | 00000560 3c 3c 20 32 34 0a 23 64 65 66 69 6e 65 20 4d 45 |<< 24.#define ME| 00000570 4e 55 49 54 45 4d 5f 42 41 43 4b 09 30 75 20 3c |NUITEM_BACK.0u <| 00000580 3c 20 32 38 0a 0a 23 64 65 66 69 6e 65 20 4d 45 |< 28..#define ME| 00000590 4e 55 5f 57 49 44 54 48 09 31 37 32 20 2f 2a 20 |NU_WIDTH.172 /* | 000005a0 63 6f 75 6c 64 20 62 65 20 6d 6f 72 65 20 69 6e |could be more in| 000005b0 74 65 6c 6c 69 67 65 6e 74 2c 20 62 75 74 20 69 |telligent, but i| 000005c0 74 27 73 20 61 20 73 74 61 72 74 20 2a 2f 0a 23 |t's a start */.#| 000005d0 64 65 66 69 6e 65 20 4d 45 4e 55 5f 48 45 49 47 |define MENU_HEIG| 000005e0 48 54 09 34 34 20 2f 2a 20 62 79 20 6f 72 64 65 |HT.44 /* by orde| 000005f0 72 20 6f 66 20 74 68 65 20 53 74 79 6c 65 20 47 |r of the Style G| 00000600 75 69 64 65 20 2a 2f 0a 23 64 65 66 69 6e 65 20 |uide */.#define | 00000610 4d 45 4e 55 5f 56 45 52 54 47 41 50 09 30 0a 0a |MENU_VERTGAP.0..| 00000620 2f 2a 20 53 69 7a 65 73 20 66 6f 72 20 62 6c 6f |/* Sizes for blo| 00000630 63 6b 20 64 65 66 69 6e 69 74 69 6f 6e 73 20 2a |ck definitions *| 00000640 2f 0a 0a 23 64 65 66 69 6e 65 20 49 43 4f 4e 5f |/..#define ICON_| 00000650 42 4c 4f 43 4b 5f 53 49 5a 45 09 34 30 0a 0a 2f |BLOCK_SIZE.40../| 00000660 2a 20 53 74 72 75 63 74 75 72 65 20 64 65 66 69 |* Structure defi| 00000670 6e 69 74 69 6f 6e 73 20 2a 2f 0a 0a 74 79 70 65 |nitions */..type| 00000680 64 65 66 20 73 74 72 75 63 74 20 77 69 6e 64 6f |def struct windo| 00000690 77 5f 64 61 74 61 20 7b 0a 09 69 6e 74 09 77 69 |w_data {..int.wi| 000006a0 6e 5f 68 61 6e 64 6c 65 3b 0a 09 75 6e 73 69 67 |n_handle;..unsig| 000006b0 6e 65 64 20 63 68 61 72 09 2a 62 75 66 66 65 72 |ned char.*buffer| 000006c0 3b 0a 09 75 6e 73 69 67 6e 65 64 20 63 68 61 72 |;..unsigned char| 000006d0 09 2a 77 6f 72 6b 73 70 61 63 65 3b 0a 09 63 68 |.*workspace;..ch| 000006e0 61 72 20 2a 77 69 6e 5f 6e 61 6d 65 3b 0a 7d 20 |ar *win_name;.} | 000006f0 77 69 6e 64 6f 77 5f 64 61 74 61 3b 0a 0a 74 79 |window_data;..ty| 00000700 70 65 64 65 66 20 73 74 72 75 63 74 20 6d 65 6e |pedef struct men| 00000710 75 5f 65 6c 65 6d 65 6e 74 20 7b 0a 09 6c 6f 6e |u_element {..lon| 00000720 67 20 69 6e 74 20 66 6c 61 67 73 3b 0a 09 6c 6f |g int flags;..lo| 00000730 6e 67 20 69 6e 74 20 73 75 62 6d 65 6e 75 3b 0a |ng int submenu;.| 00000740 09 6c 6f 6e 67 20 69 6e 74 20 6d 65 6e 75 5f 69 |.long int menu_i| 00000750 63 6f 6e 66 6c 61 67 73 3b 0a 09 63 68 61 72 20 |conflags;..char | 00000760 6d 65 6e 75 5f 74 65 78 74 5b 31 32 5d 3b 0a 09 |menu_text[12];..| 00000770 73 74 72 75 63 74 20 6d 65 6e 75 5f 65 6c 65 6d |struct menu_elem| 00000780 65 6e 74 20 2a 6e 65 78 74 5f 6d 65 6e 75 65 6c |ent *next_menuel| 00000790 65 6d 3b 0a 7d 20 6d 65 6e 75 5f 65 6c 65 6d 65 |em;.} menu_eleme| 000007a0 6e 74 3b 0a 0a 74 79 70 65 64 65 66 20 73 74 72 |nt;..typedef str| 000007b0 75 63 74 20 6d 65 6e 75 5f 64 61 74 61 20 7b 0a |uct menu_data {.| 000007c0 09 63 68 61 72 20 74 69 74 6c 65 5b 31 32 5d 3b |.char title[12];| 000007d0 0a 09 69 6e 74 20 73 69 7a 65 3b 0a 09 6c 6f 6e |..int size;..lon| 000007e0 67 20 69 6e 74 20 63 6f 6c 6f 75 72 73 3b 0a 09 |g int colours;..| 000007f0 6c 6f 6e 67 20 69 6e 74 20 77 69 64 74 68 3b 0a |long int width;.| 00000800 09 6c 6f 6e 67 20 69 6e 74 20 68 65 69 67 68 74 |.long int height| 00000810 3b 0a 09 6c 6f 6e 67 20 69 6e 74 20 76 65 72 74 |;..long int vert| 00000820 5f 67 61 70 3b 0a 09 75 6e 73 69 67 6e 65 64 20 |_gap;..unsigned | 00000830 63 68 61 72 2a 20 64 61 74 61 62 6c 6f 63 6b 3b |char* datablock;| 00000840 0a 09 6d 65 6e 75 5f 65 6c 65 6d 65 6e 74 20 2a |..menu_element *| 00000850 6e 65 78 74 5f 6d 65 6e 75 65 6c 65 6d 3b 0a 7d |next_menuelem;.}| 00000860 20 6d 65 6e 75 5f 64 61 74 61 3b 0a 0a 2f 2a 20 | menu_data;../* | 00000870 50 72 6f 74 6f 74 79 70 69 6e 67 20 2a 2f 0a 65 |Prototyping */.e| 00000880 78 74 65 72 6e 20 69 6e 74 09 61 75 5f 69 6e 69 |xtern int.au_ini| 00000890 74 69 61 6c 69 73 65 28 69 6e 74 2c 20 63 68 61 |tialise(int, cha| 000008a0 72 20 2a 2c 20 6c 6f 6e 67 20 69 6e 74 5b 5d 29 |r *, long int[])| 000008b0 3b 0a 65 78 74 65 72 6e 20 76 6f 69 64 09 61 75 |;.extern void.au| 000008c0 5f 63 6c 6f 73 65 64 6f 77 6e 28 69 6e 74 29 3b |_closedown(int);| 000008d0 0a 65 78 74 65 72 6e 20 69 6e 74 09 61 75 5f 63 |.extern int.au_c| 000008e0 72 65 61 74 65 5f 69 63 6f 6e 62 61 72 5f 69 63 |reate_iconbar_ic| 000008f0 6f 6e 28 69 6e 74 2c 20 75 6e 73 69 67 6e 65 64 |on(int, unsigned| 00000900 20 6c 6f 6e 67 20 69 6e 74 2c 20 75 6e 73 69 67 | long int, unsig| 00000910 6e 65 64 20 6c 6f 6e 67 20 69 6e 74 2c 20 63 68 |ned long int, ch| 00000920 61 72 20 2a 29 3b 0a 65 78 74 65 72 6e 20 76 6f |ar *);.extern vo| 00000930 69 64 09 61 75 5f 77 6f 72 64 74 6f 62 79 74 65 |id.au_wordtobyte| 00000940 28 75 6e 73 69 67 6e 65 64 20 6c 6f 6e 67 20 69 |(unsigned long i| 00000950 6e 74 2c 20 75 6e 73 69 67 6e 65 64 20 63 68 61 |nt, unsigned cha| 00000960 72 5b 5d 2c 20 69 6e 74 29 3b 0a 65 78 74 65 72 |r[], int);.exter| 00000970 6e 20 75 6e 73 69 67 6e 65 64 20 6c 6f 6e 67 20 |n unsigned long | 00000980 69 6e 74 09 61 75 5f 62 79 74 65 74 6f 77 6f 72 |int.au_bytetowor| 00000990 64 28 75 6e 73 69 67 6e 65 64 20 63 68 61 72 5b |d(unsigned char[| 000009a0 5d 2c 20 69 6e 74 29 3b 0a 65 78 74 65 72 6e 20 |], int);.extern | 000009b0 76 6f 69 64 09 61 75 5f 6f 70 65 6e 74 65 6d 70 |void.au_opentemp| 000009c0 6c 61 74 65 28 63 68 61 72 20 2a 29 3b 0a 65 78 |late(char *);.ex| 000009d0 74 65 72 6e 20 76 6f 69 64 09 61 75 5f 63 6c 6f |tern void.au_clo| 000009e0 73 65 74 65 6d 70 6c 61 74 65 28 76 6f 69 64 29 |setemplate(void)| 000009f0 3b 0a 65 78 74 65 72 6e 20 69 6e 74 09 61 75 5f |;.extern int.au_| 00000a00 6c 6f 61 64 74 65 6d 70 6c 61 74 65 28 63 68 61 |loadtemplate(cha| 00000a10 72 20 2a 2c 20 77 69 6e 64 6f 77 5f 64 61 74 61 |r *, window_data| 00000a20 20 2a 2c 20 69 6e 74 29 3b 0a 65 78 74 65 72 6e | *, int);.extern| 00000a30 20 69 6e 74 09 61 75 5f 72 65 70 6f 72 74 5f 65 | int.au_report_e| 00000a40 72 72 6f 72 28 69 6e 74 2c 20 63 68 61 72 20 2a |rror(int, char *| 00000a50 2c 20 69 6e 74 2c 20 63 68 61 72 20 2a 29 3b 0a |, int, char *);.| 00000a60 65 78 74 65 72 6e 20 76 6f 69 64 09 61 75 5f 6f |extern void.au_o| 00000a70 70 65 6e 77 69 6e 5f 66 72 6f 6d 5f 74 65 6d 70 |penwin_from_temp| 00000a80 6c 61 74 65 64 61 74 61 28 77 69 6e 64 6f 77 5f |latedata(window_| 00000a90 64 61 74 61 20 2a 2c 20 6c 6f 6e 67 20 69 6e 74 |data *, long int| 00000aa0 29 3b 0a 65 78 74 65 72 6e 20 69 6e 74 09 61 75 |);.extern int.au| 00000ab0 5f 77 69 6d 70 5f 70 6f 6c 6c 28 69 6e 74 2c 20 |_wimp_poll(int, | 00000ac0 75 6e 73 69 67 6e 65 64 20 63 68 61 72 20 2a 29 |unsigned char *)| 00000ad0 3b 0a 65 78 74 65 72 6e 20 76 6f 69 64 09 61 75 |;.extern void.au| 00000ae0 5f 69 63 6f 6e 5f 74 65 78 74 5f 63 68 61 6e 67 |_icon_text_chang| 00000af0 65 28 63 68 61 72 20 2a 2c 20 75 6e 73 69 67 6e |e(char *, unsign| 00000b00 65 64 20 6c 6f 6e 67 20 69 6e 74 2c 20 75 6e 73 |ed long int, uns| 00000b10 69 67 6e 65 64 20 6c 6f 6e 67 20 69 6e 74 29 3b |igned long int);| 00000b20 0a 65 78 74 65 72 6e 20 63 68 61 72 09 2a 61 75 |.extern char.*au| 00000b30 5f 67 65 74 5f 70 74 72 5f 74 6f 5f 69 63 6f 6e |_get_ptr_to_icon| 00000b40 74 65 78 74 28 75 6e 73 69 67 6e 65 64 20 6c 6f |text(unsigned lo| 00000b50 6e 67 20 69 6e 74 2c 20 75 6e 73 69 67 6e 65 64 |ng int, unsigned| 00000b60 20 6c 6f 6e 67 20 69 6e 74 29 3b 0a 65 78 74 65 | long int);.exte| 00000b70 72 6e 20 76 6f 69 64 09 61 75 5f 62 75 69 6c 64 |rn void.au_build| 00000b80 6d 65 6e 75 28 63 68 61 72 20 2a 2c 20 6d 65 6e |menu(char *, men| 00000b90 75 5f 64 61 74 61 20 2a 29 3b 0a 65 78 74 65 72 |u_data *);.exter| 00000ba0 6e 20 76 6f 69 64 09 61 75 5f 61 64 64 74 6f 6d |n void.au_addtom| 00000bb0 65 6e 75 28 63 68 61 72 20 2a 2c 20 6c 6f 6e 67 |enu(char *, long| 00000bc0 20 69 6e 74 2c 20 6c 6f 6e 67 20 69 6e 74 2c 20 | int, long int, | 00000bd0 6c 6f 6e 67 20 69 6e 74 2c 20 6d 65 6e 75 5f 64 |long int, menu_d| 00000be0 61 74 61 20 2a 29 3b 0a 65 78 74 65 72 6e 20 76 |ata *);.extern v| 00000bf0 6f 69 64 09 61 75 5f 63 72 65 61 74 65 6d 65 6e |oid.au_createmen| 00000c00 75 28 6d 65 6e 75 5f 64 61 74 61 20 2a 29 3b 0a |u(menu_data *);.| 00000c10 65 78 74 65 72 6e 20 76 6f 69 64 09 61 75 5f 6f |extern void.au_o| 00000c20 70 65 6e 6d 65 6e 75 28 6d 65 6e 75 5f 64 61 74 |penmenu(menu_dat| 00000c30 61 20 2a 2c 20 69 6e 74 2c 20 69 6e 74 29 3b 0a |a *, int, int);.| 00000c40 65 78 74 65 72 6e 20 76 6f 69 64 09 61 75 5f 69 |extern void.au_i| 00000c50 63 6f 6e 5f 67 65 74 5f 74 65 78 74 28 63 68 61 |con_get_text(cha| 00000c60 72 20 2a 2c 20 75 6e 73 69 67 6e 65 64 20 6c 6f |r *, unsigned lo| 00000c70 6e 67 20 69 6e 74 2c 20 75 6e 73 69 67 6e 65 64 |ng int, unsigned| 00000c80 20 6c 6f 6e 67 20 69 6e 74 29 3b 0a 65 78 74 65 | long int);.exte| 00000c90 72 6e 20 76 6f 69 64 09 61 75 5f 6c 6f 73 65 63 |rn void.au_losec| 00000ca0 61 72 65 74 28 76 6f 69 64 29 3b 0a 0a 23 65 6e |aret(void);..#en| 00000cb0 64 69 66 0a |dif.| 00000cb4