#Closing Arp Library
I'm a little puzzled about closing the Arp library after I've opened it.
Assuming the library handle is in LibHdl, I'd normally say
move.l LibHdl,a1
move.l 4,a6
jsr _LVOCloseLibrary(a6)
The Arp manual's examples keep refering to _LVOCloseLibrary(ArpLib),
though. Does that mean I do something like
move.l ArpHdl,a1
jsr _LVOCloseLibrary(a1)
That can't be right, can it?
THol() { cout << "Sir, I exist." ;}