Home » Archimedes archive » Acorn Computing » 1994 08 subscription disc.adf » 9408s » Shareware/Event/!AppBuild/NewApp/!RunImage

Shareware/Event/!AppBuild/NewApp/!RunImage

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 » Archimedes archive » Acorn Computing » 1994 08 subscription disc.adf » 9408s
Filename: Shareware/Event/!AppBuild/NewApp/!RunImage
Read OK:
File size: 0E32 bytes
Load address: 0000
Exec address: 0000
File contents
    1REM > <@@@@@@@@@$Dir>.!@@@@@@@@@
    2:
    3ON ERROR MODE12:SYS"Hourglass_Smash":REPORT:PRINT" at line: ";ERL:END
    4:
    5LIBRARY "<EvntShellSystem$Path>ShellLibRT"
    6:
    7SYS "Hourglass_On"
    8:
    9SYS "Wimp_SlotSize",-1,-1 TO progsize%
   10pagesize%=1<<10
   11freespace%=&8000+progsize%
   12END=freespace%+pagesize%
   13HIMEM=freespace%
   14:
   15PROCshell_HeapManagerInit("<EvntShellSystem$Path>",freespace%)
   16PROCshell_Init
   17task%=FNshell_WimpInit_I(200,"Event Shell Program")
   18REM PROCshell_TraceInit("")
   19REM PROCshell_TraceOn
   20PROCshell_ResourcesInit
   21PROCapp_init
   22:
   23REM -------------------- Initialise Variables ----------------------------
   24:
   25_closedown%     =FALSE :REM Set this to TRUE when you want the program to
   26                       :REM end
   27changed%        =FALSE :REM Used to keep track of whether the data has
   28                       :REM been changed. Call PROCfile_changed() when it
   29                       :REM has. But if the program does not use data
   30                       :REM files just ignore this variable but do not
   31                       :REM delete it as the program checks it before
   32                       :REM exiting!
   33:
   34REM -------------------- Miscelleanous Initialisation --------------------
   35:
   36ON ERROR PROCshell_Error
   37:
   38SYS "Hourglass_Off"
   39REPEAT
   40  PROCshell_Action(FNshell_Poll_I(0,task%))
   41UNTIL _closedown%
   42:
   43PROCshell_Exit:END
   44:
   45REM ======================================================================
   46:
   47DEF PROCapp_init
   48PROCSetUp_Menus
   49PROCSetUp_Windows
   50PROCSetUp_IconBar
   51PROCshell_InitHelpSystem(FNshell_GetAppName+"Res:"+FNshell_GetAppName,TRUE)
   52ENDPROC
   53:
   54
   55REM ===== Menu_Setup routines ======================================
   56
   57DEF PROCSetUp_Menus
   58LOCAL void%
   59
   60MenuHandle_IconBar%=FNshell_MenuNew(FNshell_MessageNoArgs("MTIBar"))
   61MenuItem_Info%     =FNshell_MenuAdd(0,FNshell_MessageNoArgs("Info"),"")
   62void%              =FNshell_MenuAdd(0,FNshell_MessageNoArgs("Quit"),"_MenuSelect_Quit")
   63PROCshell_AttachMenuDBox(MenuItem_Info%,"progInfo","_PreOpenInfo","")
   64
   65ENDPROC
   66:
   67
   68REM ===== Window_SetUp routines ====================================
   69
   70DEF PROCSetUp_Windows
   71PROCshell_CreateWindowStatic("mainw",mainw%)
   72ENDPROC
   73:
   74
   75REM ===== IconBar_SetUp routines ===================================
   76
   77DEF PROCSetUp_IconBar
   78sicon=FNshell_Iconbar(-1,"!"+FNshell_GetAppName,"",120,MenuHandle_IconBar%,0,0,0)
   79PROCshell_AttachHelpTag(-1,sicon,"iconbar")
   80PROCshell_AttachClickSelect(-1,sicon,"_ClickSelect_IconBar")
   81ENDPROC
   82:
   83
   84REM ===== Dialog_PreOpen routines ==================================
   85
   86DEF FN_PreOpenInfo(wh%)
   87PROCshell_IconPutData(wh%,0,FNshell_MessageNoArgs("progInfo0"),0)
   88PROCshell_IconPutData(wh%,1,FNshell_MessageNoArgs("progInfo1"),0)
   89PROCshell_IconPutData(wh%,2,FNshell_MessageNoArgs("progInfo2"),0)
   90PROCshell_IconPutData(wh%,3,FNshell_MessageNoArgs("progInfo3"),0)
   91=0
   92:
   93
   94REM ===== Dialog_PostOpen routines =================================
   95
   96REM ===== Click_Select routines ====================================
   97
   98DEF FN_ClickSelect_IconBar(wh%,icon%)
   99PROCshell_OpenWindowStatic(mainw%)
  100=0
  101:
  102
  103REM ===== Click_Adjust routines ====================================
  104
  105REM ===== Menu_Select routines =====================================
  106
  107DEF FN_MenuSelect_Quit(blk%)
  108_closedown%=TRUE
  109=0
  110:
  111
  112REM ===== Menu_Warning routines ====================================
  113
  114REM ===== Data_Load routines =======================================
  115
  116REM ===== Data_Save routines =======================================
  117
  118REM ===== User application routines ================================
  119
  120REM ================= End Of User Application ======================
  121:
"� > <@@@@@@@@@$Dir>.!@@@@@@@@@
:
3� � �12:ș"Hourglass_Smash":�:�" at line: ";�:�
:
)ț "<EvntShellSystem$Path>ShellLibRT"
:
ș "Hourglass_On"
:
	(ș "Wimp_SlotSize",-1,-1 � progsize%

pagesize%=1<<10
freespace%=&8000+progsize%
�=freespace%+pagesize%

�=freespace%
:
?�shell_HeapManagerInit("<EvntShellSystem$Path>",freespace%)
�shell_Init
6task%=�shell_WimpInit_I(200,"Event Shell Program")
� PROCshell_TraceInit("")
� PROCshell_TraceOn
�shell_ResourcesInit

�app_init
:
L� -------------------- Initialise Variables ----------------------------
:
G_closedown%     =� :� Set this to TRUE when you want the program to
!                       :� end
Dchanged%        =� :� Used to keep track of whether the data has
K                       :� been changed. Call PROCfile_changed() when it
G                       :� has. But if the program does not use data
H                       :� files just ignore this variable but do not
G                       :� delete it as the program checks it before
 &                       :� exiting!
!:
"L� -------------------- Miscelleanous Initialisation --------------------
#:
$� � �shell_Error
%:
&ș "Hourglass_Off"
'�
(+  �shell_Action(�shell_Poll_I(0,task%))
)� _closedown%
*:
+�shell_Exit:�
,:
-L� ======================================================================
.:
/� �app_init
0�SetUp_Menus
1�SetUp_Windows
2�SetUp_IconBar
3G�shell_InitHelpSystem(�shell_GetAppName+"Res:"+�shell_GetAppName,�)
4�
5:
6
7F� ===== Menu_Setup routines ======================================
8
9� �SetUp_Menus
:� void%
;
<FMenuHandle_IconBar%=�shell_MenuNew(�shell_MessageNoArgs("MTIBar"))
=IMenuItem_Info%     =�shell_MenuAdd(0,�shell_MessageNoArgs("Info"),"")
>Yvoid%              =�shell_MenuAdd(0,�shell_MessageNoArgs("Quit"),"_MenuSelect_Quit")
?F�shell_AttachMenuDBox(MenuItem_Info%,"progInfo","_PreOpenInfo","")
@
A�
B:
C
DF� ===== Window_SetUp routines ====================================
E
F� �SetUp_Windows
G-�shell_CreateWindowStatic("mainw",mainw%)
H�
I:
J
KF� ===== IconBar_SetUp routines ===================================
L
M� �SetUp_IconBar
NSsicon=�shell_Iconbar(-1,"!"+�shell_GetAppName,"",120,MenuHandle_IconBar%,0,0,0)
O,�shell_AttachHelpTag(-1,sicon,"iconbar")
P=�shell_AttachClickSelect(-1,sicon,"_ClickSelect_IconBar")
Q�
R:
S
TF� ===== Dialog_PreOpen routines ==================================
U
V� �_PreOpenInfo(wh%)
WA�shell_IconPutData(wh%,0,�shell_MessageNoArgs("progInfo0"),0)
XA�shell_IconPutData(wh%,1,�shell_MessageNoArgs("progInfo1"),0)
YA�shell_IconPutData(wh%,2,�shell_MessageNoArgs("progInfo2"),0)
ZA�shell_IconPutData(wh%,3,�shell_MessageNoArgs("progInfo3"),0)
[=0
\:
]
^F� ===== Dialog_PostOpen routines =================================
_
`F� ===== Click_Select routines ====================================
a
b&� �_ClickSelect_IconBar(wh%,icon%)
c#�shell_OpenWindowStatic(mainw%)
d=0
e:
f
gF� ===== Click_Adjust routines ====================================
h
iF� ===== Menu_Select routines =====================================
j
k� �_MenuSelect_Quit(blk%)
l_closedown%=�
m=0
n:
o
pF� ===== Menu_Warning routines ====================================
q
rF� ===== Data_Load routines =======================================
s
tF� ===== Data_Save routines =======================================
u
vF� ===== User application routines ================================
w
xF� ================= End Of User Application ======================
y:
�
00000000  0d 00 01 22 f4 20 3e 20  3c 40 40 40 40 40 40 40  |...". > <@@@@@@@|
00000010  40 40 24 44 69 72 3e 2e  21 40 40 40 40 40 40 40  |@@$Dir>.!@@@@@@@|
00000020  40 40 0d 00 02 05 3a 0d  00 03 33 ee 20 85 20 eb  |@@....:...3. . .|
00000030  31 32 3a c8 99 22 48 6f  75 72 67 6c 61 73 73 5f  |12:.."Hourglass_|
00000040  53 6d 61 73 68 22 3a f6  3a f1 22 20 61 74 20 6c  |Smash":.:." at l|
00000050  69 6e 65 3a 20 22 3b 9e  3a e0 0d 00 04 05 3a 0d  |ine: ";.:.....:.|
00000060  00 05 29 c8 9b 20 22 3c  45 76 6e 74 53 68 65 6c  |..).. "<EvntShel|
00000070  6c 53 79 73 74 65 6d 24  50 61 74 68 3e 53 68 65  |lSystem$Path>She|
00000080  6c 6c 4c 69 62 52 54 22  0d 00 06 05 3a 0d 00 07  |llLibRT"....:...|
00000090  15 c8 99 20 22 48 6f 75  72 67 6c 61 73 73 5f 4f  |... "Hourglass_O|
000000a0  6e 22 0d 00 08 05 3a 0d  00 09 28 c8 99 20 22 57  |n"....:...(.. "W|
000000b0  69 6d 70 5f 53 6c 6f 74  53 69 7a 65 22 2c 2d 31  |imp_SlotSize",-1|
000000c0  2c 2d 31 20 b8 20 70 72  6f 67 73 69 7a 65 25 0d  |,-1 . progsize%.|
000000d0  00 0a 13 70 61 67 65 73  69 7a 65 25 3d 31 3c 3c  |...pagesize%=1<<|
000000e0  31 30 0d 00 0b 1e 66 72  65 65 73 70 61 63 65 25  |10....freespace%|
000000f0  3d 26 38 30 30 30 2b 70  72 6f 67 73 69 7a 65 25  |=&8000+progsize%|
00000100  0d 00 0c 1a e0 3d 66 72  65 65 73 70 61 63 65 25  |.....=freespace%|
00000110  2b 70 61 67 65 73 69 7a  65 25 0d 00 0d 10 d3 3d  |+pagesize%.....=|
00000120  66 72 65 65 73 70 61 63  65 25 0d 00 0e 05 3a 0d  |freespace%....:.|
00000130  00 0f 3f f2 73 68 65 6c  6c 5f 48 65 61 70 4d 61  |..?.shell_HeapMa|
00000140  6e 61 67 65 72 49 6e 69  74 28 22 3c 45 76 6e 74  |nagerInit("<Evnt|
00000150  53 68 65 6c 6c 53 79 73  74 65 6d 24 50 61 74 68  |ShellSystem$Path|
00000160  3e 22 2c 66 72 65 65 73  70 61 63 65 25 29 0d 00  |>",freespace%)..|
00000170  10 0f f2 73 68 65 6c 6c  5f 49 6e 69 74 0d 00 11  |...shell_Init...|
00000180  36 74 61 73 6b 25 3d a4  73 68 65 6c 6c 5f 57 69  |6task%=.shell_Wi|
00000190  6d 70 49 6e 69 74 5f 49  28 32 30 30 2c 22 45 76  |mpInit_I(200,"Ev|
000001a0  65 6e 74 20 53 68 65 6c  6c 20 50 72 6f 67 72 61  |ent Shell Progra|
000001b0  6d 22 29 0d 00 12 1d f4  20 50 52 4f 43 73 68 65  |m")..... PROCshe|
000001c0  6c 6c 5f 54 72 61 63 65  49 6e 69 74 28 22 22 29  |ll_TraceInit("")|
000001d0  0d 00 13 17 f4 20 50 52  4f 43 73 68 65 6c 6c 5f  |..... PROCshell_|
000001e0  54 72 61 63 65 4f 6e 0d  00 14 18 f2 73 68 65 6c  |TraceOn.....shel|
000001f0  6c 5f 52 65 73 6f 75 72  63 65 73 49 6e 69 74 0d  |l_ResourcesInit.|
00000200  00 15 0d f2 61 70 70 5f  69 6e 69 74 0d 00 16 05  |....app_init....|
00000210  3a 0d 00 17 4c f4 20 2d  2d 2d 2d 2d 2d 2d 2d 2d  |:...L. ---------|
00000220  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 20 49 6e 69 74  |----------- Init|
00000230  69 61 6c 69 73 65 20 56  61 72 69 61 62 6c 65 73  |ialise Variables|
00000240  20 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  | ---------------|
00000250  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 0d 00 18  |-------------...|
00000260  05 3a 0d 00 19 47 5f 63  6c 6f 73 65 64 6f 77 6e  |.:...G_closedown|
00000270  25 20 20 20 20 20 3d a3  20 3a f4 20 53 65 74 20  |%     =. :. Set |
00000280  74 68 69 73 20 74 6f 20  54 52 55 45 20 77 68 65  |this to TRUE whe|
00000290  6e 20 79 6f 75 20 77 61  6e 74 20 74 68 65 20 70  |n you want the p|
000002a0  72 6f 67 72 61 6d 20 74  6f 0d 00 1a 21 20 20 20  |rogram to...!   |
000002b0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000002c0  20 20 20 20 3a f4 20 65  6e 64 0d 00 1b 44 63 68  |    :. end...Dch|
000002d0  61 6e 67 65 64 25 20 20  20 20 20 20 20 20 3d a3  |anged%        =.|
000002e0  20 3a f4 20 55 73 65 64  20 74 6f 20 6b 65 65 70  | :. Used to keep|
000002f0  20 74 72 61 63 6b 20 6f  66 20 77 68 65 74 68 65  | track of whethe|
00000300  72 20 74 68 65 20 64 61  74 61 20 68 61 73 0d 00  |r the data has..|
00000310  1c 4b 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |.K              |
00000320  20 20 20 20 20 20 20 20  20 3a f4 20 62 65 65 6e  |         :. been|
00000330  20 63 68 61 6e 67 65 64  2e 20 43 61 6c 6c 20 50  | changed. Call P|
00000340  52 4f 43 66 69 6c 65 5f  63 68 61 6e 67 65 64 28  |ROCfile_changed(|
00000350  29 20 77 68 65 6e 20 69  74 0d 00 1d 47 20 20 20  |) when it...G   |
00000360  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000370  20 20 20 20 3a f4 20 68  61 73 2e 20 42 75 74 20  |    :. has. But |
00000380  69 66 20 74 68 65 20 70  72 6f 67 72 61 6d 20 64  |if the program d|
00000390  6f 65 73 20 6e 6f 74 20  75 73 65 20 64 61 74 61  |oes not use data|
000003a0  0d 00 1e 48 20 20 20 20  20 20 20 20 20 20 20 20  |...H            |
000003b0  20 20 20 20 20 20 20 20  20 20 20 3a f4 20 66 69  |           :. fi|
000003c0  6c 65 73 20 6a 75 73 74  20 69 67 6e 6f 72 65 20  |les just ignore |
000003d0  74 68 69 73 20 76 61 72  69 61 62 6c 65 20 62 75  |this variable bu|
000003e0  74 20 64 6f 20 6e 6f 74  0d 00 1f 47 20 20 20 20  |t do not...G    |
000003f0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000400  20 20 20 3a f4 20 64 65  6c 65 74 65 20 69 74 20  |   :. delete it |
00000410  61 73 20 74 68 65 20 70  72 6f 67 72 61 6d 20 63  |as the program c|
00000420  68 65 63 6b 73 20 69 74  20 62 65 66 6f 72 65 0d  |hecks it before.|
00000430  00 20 26 20 20 20 20 20  20 20 20 20 20 20 20 20  |. &             |
00000440  20 20 20 20 20 20 20 20  20 20 3a f4 20 65 78 69  |          :. exi|
00000450  74 69 6e 67 21 0d 00 21  05 3a 0d 00 22 4c f4 20  |ting!..!.:.."L. |
00000460  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
00000470  2d 2d 2d 2d 20 4d 69 73  63 65 6c 6c 65 61 6e 6f  |---- Miscelleano|
00000480  75 73 20 49 6e 69 74 69  61 6c 69 73 61 74 69 6f  |us Initialisatio|
00000490  6e 20 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |n --------------|
000004a0  2d 2d 2d 2d 2d 2d 0d 00  23 05 3a 0d 00 24 14 ee  |------..#.:..$..|
000004b0  20 85 20 f2 73 68 65 6c  6c 5f 45 72 72 6f 72 0d  | . .shell_Error.|
000004c0  00 25 05 3a 0d 00 26 16  c8 99 20 22 48 6f 75 72  |.%.:..&... "Hour|
000004d0  67 6c 61 73 73 5f 4f 66  66 22 0d 00 27 05 f5 0d  |glass_Off"..'...|
000004e0  00 28 2b 20 20 f2 73 68  65 6c 6c 5f 41 63 74 69  |.(+  .shell_Acti|
000004f0  6f 6e 28 a4 73 68 65 6c  6c 5f 50 6f 6c 6c 5f 49  |on(.shell_Poll_I|
00000500  28 30 2c 74 61 73 6b 25  29 29 0d 00 29 11 fd 20  |(0,task%))..).. |
00000510  5f 63 6c 6f 73 65 64 6f  77 6e 25 0d 00 2a 05 3a  |_closedown%..*.:|
00000520  0d 00 2b 11 f2 73 68 65  6c 6c 5f 45 78 69 74 3a  |..+..shell_Exit:|
00000530  e0 0d 00 2c 05 3a 0d 00  2d 4c f4 20 3d 3d 3d 3d  |...,.:..-L. ====|
00000540  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000580  3d 3d 0d 00 2e 05 3a 0d  00 2f 0f dd 20 f2 61 70  |==....:../.. .ap|
00000590  70 5f 69 6e 69 74 0d 00  30 10 f2 53 65 74 55 70  |p_init..0..SetUp|
000005a0  5f 4d 65 6e 75 73 0d 00  31 12 f2 53 65 74 55 70  |_Menus..1..SetUp|
000005b0  5f 57 69 6e 64 6f 77 73  0d 00 32 12 f2 53 65 74  |_Windows..2..Set|
000005c0  55 70 5f 49 63 6f 6e 42  61 72 0d 00 33 47 f2 73  |Up_IconBar..3G.s|
000005d0  68 65 6c 6c 5f 49 6e 69  74 48 65 6c 70 53 79 73  |hell_InitHelpSys|
000005e0  74 65 6d 28 a4 73 68 65  6c 6c 5f 47 65 74 41 70  |tem(.shell_GetAp|
000005f0  70 4e 61 6d 65 2b 22 52  65 73 3a 22 2b a4 73 68  |pName+"Res:"+.sh|
00000600  65 6c 6c 5f 47 65 74 41  70 70 4e 61 6d 65 2c b9  |ell_GetAppName,.|
00000610  29 0d 00 34 05 e1 0d 00  35 05 3a 0d 00 36 04 0d  |)..4....5.:..6..|
00000620  00 37 46 f4 20 3d 3d 3d  3d 3d 20 4d 65 6e 75 5f  |.7F. ===== Menu_|
00000630  53 65 74 75 70 20 72 6f  75 74 69 6e 65 73 20 3d  |Setup routines =|
00000640  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000660  3d 3d 3d 3d 3d 0d 00 38  04 0d 00 39 12 dd 20 f2  |=====..8...9.. .|
00000670  53 65 74 55 70 5f 4d 65  6e 75 73 0d 00 3a 0b ea  |SetUp_Menus..:..|
00000680  20 76 6f 69 64 25 0d 00  3b 04 0d 00 3c 46 4d 65  | void%..;...<FMe|
00000690  6e 75 48 61 6e 64 6c 65  5f 49 63 6f 6e 42 61 72  |nuHandle_IconBar|
000006a0  25 3d a4 73 68 65 6c 6c  5f 4d 65 6e 75 4e 65 77  |%=.shell_MenuNew|
000006b0  28 a4 73 68 65 6c 6c 5f  4d 65 73 73 61 67 65 4e  |(.shell_MessageN|
000006c0  6f 41 72 67 73 28 22 4d  54 49 42 61 72 22 29 29  |oArgs("MTIBar"))|
000006d0  0d 00 3d 49 4d 65 6e 75  49 74 65 6d 5f 49 6e 66  |..=IMenuItem_Inf|
000006e0  6f 25 20 20 20 20 20 3d  a4 73 68 65 6c 6c 5f 4d  |o%     =.shell_M|
000006f0  65 6e 75 41 64 64 28 30  2c a4 73 68 65 6c 6c 5f  |enuAdd(0,.shell_|
00000700  4d 65 73 73 61 67 65 4e  6f 41 72 67 73 28 22 49  |MessageNoArgs("I|
00000710  6e 66 6f 22 29 2c 22 22  29 0d 00 3e 59 76 6f 69  |nfo"),"")..>Yvoi|
00000720  64 25 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |d%              |
00000730  3d a4 73 68 65 6c 6c 5f  4d 65 6e 75 41 64 64 28  |=.shell_MenuAdd(|
00000740  30 2c a4 73 68 65 6c 6c  5f 4d 65 73 73 61 67 65  |0,.shell_Message|
00000750  4e 6f 41 72 67 73 28 22  51 75 69 74 22 29 2c 22  |NoArgs("Quit"),"|
00000760  5f 4d 65 6e 75 53 65 6c  65 63 74 5f 51 75 69 74  |_MenuSelect_Quit|
00000770  22 29 0d 00 3f 46 f2 73  68 65 6c 6c 5f 41 74 74  |")..?F.shell_Att|
00000780  61 63 68 4d 65 6e 75 44  42 6f 78 28 4d 65 6e 75  |achMenuDBox(Menu|
00000790  49 74 65 6d 5f 49 6e 66  6f 25 2c 22 70 72 6f 67  |Item_Info%,"prog|
000007a0  49 6e 66 6f 22 2c 22 5f  50 72 65 4f 70 65 6e 49  |Info","_PreOpenI|
000007b0  6e 66 6f 22 2c 22 22 29  0d 00 40 04 0d 00 41 05  |nfo","")..@...A.|
000007c0  e1 0d 00 42 05 3a 0d 00  43 04 0d 00 44 46 f4 20  |...B.:..C...DF. |
000007d0  3d 3d 3d 3d 3d 20 57 69  6e 64 6f 77 5f 53 65 74  |===== Window_Set|
000007e0  55 70 20 72 6f 75 74 69  6e 65 73 20 3d 3d 3d 3d  |Up routines ====|
000007f0  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000810  0d 00 45 04 0d 00 46 14  dd 20 f2 53 65 74 55 70  |..E...F.. .SetUp|
00000820  5f 57 69 6e 64 6f 77 73  0d 00 47 2d f2 73 68 65  |_Windows..G-.she|
00000830  6c 6c 5f 43 72 65 61 74  65 57 69 6e 64 6f 77 53  |ll_CreateWindowS|
00000840  74 61 74 69 63 28 22 6d  61 69 6e 77 22 2c 6d 61  |tatic("mainw",ma|
00000850  69 6e 77 25 29 0d 00 48  05 e1 0d 00 49 05 3a 0d  |inw%)..H....I.:.|
00000860  00 4a 04 0d 00 4b 46 f4  20 3d 3d 3d 3d 3d 20 49  |.J...KF. ===== I|
00000870  63 6f 6e 42 61 72 5f 53  65 74 55 70 20 72 6f 75  |conBar_SetUp rou|
00000880  74 69 6e 65 73 20 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |tines ==========|
00000890  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
000008a0  3d 3d 3d 3d 3d 3d 3d 3d  3d 0d 00 4c 04 0d 00 4d  |=========..L...M|
000008b0  14 dd 20 f2 53 65 74 55  70 5f 49 63 6f 6e 42 61  |.. .SetUp_IconBa|
000008c0  72 0d 00 4e 53 73 69 63  6f 6e 3d a4 73 68 65 6c  |r..NSsicon=.shel|
000008d0  6c 5f 49 63 6f 6e 62 61  72 28 2d 31 2c 22 21 22  |l_Iconbar(-1,"!"|
000008e0  2b a4 73 68 65 6c 6c 5f  47 65 74 41 70 70 4e 61  |+.shell_GetAppNa|
000008f0  6d 65 2c 22 22 2c 31 32  30 2c 4d 65 6e 75 48 61  |me,"",120,MenuHa|
00000900  6e 64 6c 65 5f 49 63 6f  6e 42 61 72 25 2c 30 2c  |ndle_IconBar%,0,|
00000910  30 2c 30 29 0d 00 4f 2c  f2 73 68 65 6c 6c 5f 41  |0,0)..O,.shell_A|
00000920  74 74 61 63 68 48 65 6c  70 54 61 67 28 2d 31 2c  |ttachHelpTag(-1,|
00000930  73 69 63 6f 6e 2c 22 69  63 6f 6e 62 61 72 22 29  |sicon,"iconbar")|
00000940  0d 00 50 3d f2 73 68 65  6c 6c 5f 41 74 74 61 63  |..P=.shell_Attac|
00000950  68 43 6c 69 63 6b 53 65  6c 65 63 74 28 2d 31 2c  |hClickSelect(-1,|
00000960  73 69 63 6f 6e 2c 22 5f  43 6c 69 63 6b 53 65 6c  |sicon,"_ClickSel|
00000970  65 63 74 5f 49 63 6f 6e  42 61 72 22 29 0d 00 51  |ect_IconBar")..Q|
00000980  05 e1 0d 00 52 05 3a 0d  00 53 04 0d 00 54 46 f4  |....R.:..S...TF.|
00000990  20 3d 3d 3d 3d 3d 20 44  69 61 6c 6f 67 5f 50 72  | ===== Dialog_Pr|
000009a0  65 4f 70 65 6e 20 72 6f  75 74 69 6e 65 73 20 3d  |eOpen routines =|
000009b0  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
000009d0  3d 0d 00 55 04 0d 00 56  18 dd 20 a4 5f 50 72 65  |=..U...V.. ._Pre|
000009e0  4f 70 65 6e 49 6e 66 6f  28 77 68 25 29 0d 00 57  |OpenInfo(wh%)..W|
000009f0  41 f2 73 68 65 6c 6c 5f  49 63 6f 6e 50 75 74 44  |A.shell_IconPutD|
00000a00  61 74 61 28 77 68 25 2c  30 2c a4 73 68 65 6c 6c  |ata(wh%,0,.shell|
00000a10  5f 4d 65 73 73 61 67 65  4e 6f 41 72 67 73 28 22  |_MessageNoArgs("|
00000a20  70 72 6f 67 49 6e 66 6f  30 22 29 2c 30 29 0d 00  |progInfo0"),0)..|
00000a30  58 41 f2 73 68 65 6c 6c  5f 49 63 6f 6e 50 75 74  |XA.shell_IconPut|
00000a40  44 61 74 61 28 77 68 25  2c 31 2c a4 73 68 65 6c  |Data(wh%,1,.shel|
00000a50  6c 5f 4d 65 73 73 61 67  65 4e 6f 41 72 67 73 28  |l_MessageNoArgs(|
00000a60  22 70 72 6f 67 49 6e 66  6f 31 22 29 2c 30 29 0d  |"progInfo1"),0).|
00000a70  00 59 41 f2 73 68 65 6c  6c 5f 49 63 6f 6e 50 75  |.YA.shell_IconPu|
00000a80  74 44 61 74 61 28 77 68  25 2c 32 2c a4 73 68 65  |tData(wh%,2,.she|
00000a90  6c 6c 5f 4d 65 73 73 61  67 65 4e 6f 41 72 67 73  |ll_MessageNoArgs|
00000aa0  28 22 70 72 6f 67 49 6e  66 6f 32 22 29 2c 30 29  |("progInfo2"),0)|
00000ab0  0d 00 5a 41 f2 73 68 65  6c 6c 5f 49 63 6f 6e 50  |..ZA.shell_IconP|
00000ac0  75 74 44 61 74 61 28 77  68 25 2c 33 2c a4 73 68  |utData(wh%,3,.sh|
00000ad0  65 6c 6c 5f 4d 65 73 73  61 67 65 4e 6f 41 72 67  |ell_MessageNoArg|
00000ae0  73 28 22 70 72 6f 67 49  6e 66 6f 33 22 29 2c 30  |s("progInfo3"),0|
00000af0  29 0d 00 5b 06 3d 30 0d  00 5c 05 3a 0d 00 5d 04  |)..[.=0..\.:..].|
00000b00  0d 00 5e 46 f4 20 3d 3d  3d 3d 3d 20 44 69 61 6c  |..^F. ===== Dial|
00000b10  6f 67 5f 50 6f 73 74 4f  70 65 6e 20 72 6f 75 74  |og_PostOpen rout|
00000b20  69 6e 65 73 20 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |ines ===========|
00000b30  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00000b40  3d 3d 3d 3d 3d 3d 0d 00  5f 04 0d 00 60 46 f4 20  |======.._...`F. |
00000b50  3d 3d 3d 3d 3d 20 43 6c  69 63 6b 5f 53 65 6c 65  |===== Click_Sele|
00000b60  63 74 20 72 6f 75 74 69  6e 65 73 20 3d 3d 3d 3d  |ct routines ====|
00000b70  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000b90  0d 00 61 04 0d 00 62 26  dd 20 a4 5f 43 6c 69 63  |..a...b&. ._Clic|
00000ba0  6b 53 65 6c 65 63 74 5f  49 63 6f 6e 42 61 72 28  |kSelect_IconBar(|
00000bb0  77 68 25 2c 69 63 6f 6e  25 29 0d 00 63 23 f2 73  |wh%,icon%)..c#.s|
00000bc0  68 65 6c 6c 5f 4f 70 65  6e 57 69 6e 64 6f 77 53  |hell_OpenWindowS|
00000bd0  74 61 74 69 63 28 6d 61  69 6e 77 25 29 0d 00 64  |tatic(mainw%)..d|
00000be0  06 3d 30 0d 00 65 05 3a  0d 00 66 04 0d 00 67 46  |.=0..e.:..f...gF|
00000bf0  f4 20 3d 3d 3d 3d 3d 20  43 6c 69 63 6b 5f 41 64  |. ===== Click_Ad|
00000c00  6a 75 73 74 20 72 6f 75  74 69 6e 65 73 20 3d 3d  |just routines ==|
00000c10  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000c30  3d 3d 0d 00 68 04 0d 00  69 46 f4 20 3d 3d 3d 3d  |==..h...iF. ====|
00000c40  3d 20 4d 65 6e 75 5f 53  65 6c 65 63 74 20 72 6f  |= Menu_Select ro|
00000c50  75 74 69 6e 65 73 20 3d  3d 3d 3d 3d 3d 3d 3d 3d  |utines =========|
00000c60  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00000c70  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 0d 00 6a 04  |============..j.|
00000c80  0d 00 6b 1d dd 20 a4 5f  4d 65 6e 75 53 65 6c 65  |..k.. ._MenuSele|
00000c90  63 74 5f 51 75 69 74 28  62 6c 6b 25 29 0d 00 6c  |ct_Quit(blk%)..l|
00000ca0  11 5f 63 6c 6f 73 65 64  6f 77 6e 25 3d b9 0d 00  |._closedown%=...|
00000cb0  6d 06 3d 30 0d 00 6e 05  3a 0d 00 6f 04 0d 00 70  |m.=0..n.:..o...p|
00000cc0  46 f4 20 3d 3d 3d 3d 3d  20 4d 65 6e 75 5f 57 61  |F. ===== Menu_Wa|
00000cd0  72 6e 69 6e 67 20 72 6f  75 74 69 6e 65 73 20 3d  |rning routines =|
00000ce0  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000d00  3d 3d 3d 0d 00 71 04 0d  00 72 46 f4 20 3d 3d 3d  |===..q...rF. ===|
00000d10  3d 3d 20 44 61 74 61 5f  4c 6f 61 64 20 72 6f 75  |== Data_Load rou|
00000d20  74 69 6e 65 73 20 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |tines ==========|
00000d30  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00000d40  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 0d 00 73  |=============..s|
00000d50  04 0d 00 74 46 f4 20 3d  3d 3d 3d 3d 20 44 61 74  |...tF. ===== Dat|
00000d60  61 5f 53 61 76 65 20 72  6f 75 74 69 6e 65 73 20  |a_Save routines |
00000d70  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
*
00000d90  3d 3d 3d 3d 3d 3d 3d 0d  00 75 04 0d 00 76 46 f4  |=======..u...vF.|
00000da0  20 3d 3d 3d 3d 3d 20 55  73 65 72 20 61 70 70 6c  | ===== User appl|
00000db0  69 63 61 74 69 6f 6e 20  72 6f 75 74 69 6e 65 73  |ication routines|
00000dc0  20 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  | ===============|
00000dd0  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |================|
00000de0  3d 0d 00 77 04 0d 00 78  46 f4 20 3d 3d 3d 3d 3d  |=..w...xF. =====|
00000df0  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 3d 20 45 6e 64  |============ End|
00000e00  20 4f 66 20 55 73 65 72  20 41 70 70 6c 69 63 61  | Of User Applica|
00000e10  74 69 6f 6e 20 3d 3d 3d  3d 3d 3d 3d 3d 3d 3d 3d  |tion ===========|
00000e20  3d 3d 3d 3d 3d 3d 3d 3d  3d 3d 3d 0d 00 79 05 3a  |===========..y.:|
00000e30  0d ff                                             |..|
00000e32