]> git.sur5r.net Git - cc65/blobdiff - doc/geos.sgml
Added note on the necessity of tab chars at the beginning of make command lines.
[cc65] / doc / geos.sgml
index 2efc4393dbd906ec943271b91f8f6c0c4cdea8bd..d58a8764f4f2c37f2bf893282afc382eb4920690 100644 (file)
@@ -6,10 +6,10 @@
 
 <title>GEOSLib docs
 <author>Maciej Witkowiak, <htmlurl url="mailto:ytm@elysium.pl" name="ytm@elysium.pl">
-<date>v1.1, 26.12.1999, 16.03.2000, 19-22.03.2000, 11,29.07.2000
+<date>v1.5, 26.12.1999, 2000, 2001, 2002, 2003, 2005
 <abstract>
 This is the documentation of cc65's GEOSLib, but information contained here may be also
-useful for writting GEOS applications in general.
+useful for writing GEOS applications in general.
 </abstract>
 
 <!-- Table of contents -->
@@ -27,21 +27,50 @@ is easy to use and program.
 Coding GEOS in C? That's something new. It is possible now - with Ulrich von Bassewitz's cc65
 package and my GEOSLib you are able to create GEOS applications in no-time.
 <p>
-GEOSLib in its current stage doesn't support standard cc65 libraries. It is likely to be changed
-in next version. Note that it doesn't mean that it will not work now. I didn't bother myself to
-check if it is possible. All I needed for a start was including only <tt/geos.h/ in the source
-and nothing else.
+GEOSLib supports a subset of standard cc65 libraries. Whenever possible native Kernal functions
+are used (e.g. <tt/memset/ is an alias for <tt/FillRam/), however not all are supported. E.g.
+string functions like <tt/strcmp/, <tt/strcpy/ are doubled with native <tt/CmpString/,
+<tt/CopyString/ because the latter can handle only 256 byte strings. Keep this in mind when
+you will write your program. If you don't need long strings simply use functions from Kernal,
+resulting code will be smaller.
+<p>
+<tt/dio/ - direct disk access is available, but you might have problems with devices other
+than 1541, 1571 or 1581. RAM drives emulating these should work.
+<p>
+<tt/conio/ - simple console input-output is available for command line applications.
+This implementation assumes that one character will fit in 8x8 cell, so output with
+default BSW font, which is has 9 points, might be a bit messy.
+<tt/cputs/ will output characters with fixed width, for proportional spacing use
+<tt/cpputs/ but this function does not update cursor. There is no color support in
+GEOS 2.0 so color functions are disabled. Both 40 and 80 columns modes are supported
+and automatically detected.
+<p>
+<tt/tgi/ - TGI driver for GEOS that supports both 40 and 80 columns modes but mode can not be
+changed between <tt/tgi_init/ and <tt/tgi_done/.
+<p>
+<tt/joy/ - JOY driver for GEOS supports only joystick, not current pointing device.
+<p>
+It is safe to use these standard includes and their contents:
+<tt/assert.h, conio.h, dio.h, errno.h, em.h, geos.h, joystick.h, modload.h, mouse.h, stdlib.h, string.h, tgi.h, time.h/
+<p>
+For <tt/time.h/ functions <tt/systime()/ and <tt/clock()/ note that the resolution is one second.
+<p>
+It was not tested enough, but functions from these includes might work under GEOS:
+<tt/rs232.h, zlib.h/
+<p>
+Functions from the headers above are either standard C library functions or cc65-specific, in
+either case they are not GEOS specific and so they are not described here.
 <p>
 I am an assembler programmer and GEOSLib was designed in such way that cc65 could emit the best
 available code (well, the best as for machine :). Many of the <tt/void foo (void)/ functions are
 just raw calls to Kernal (assembled just as <tt/jsr _foo/), look in <tt/gsym.h/, where you
 will find many definitions of standard GEOS locations. Access to these addresses is optimized by
-cc65 to simple <tt/lda/ and <tt/sta/.
+cc65 to simple <tt/lda/ and <tt/sta/. Don't be afraid to use C syntax.
 
 <sect1>Requirements
 <p>
 You will not need c64 or c128 for development. The only hardware requirement is a PC capable of
-runing cc65. You will however need c64 or c128 emulator and GEOS image disks (.d64) to test your
+running cc65. You will however need c64 or c128 emulator and GEOS image disks (.d64) to test your
 programs.
 
 The software needed:
@@ -51,17 +80,23 @@ The software needed:
                name="http://www.von-bassewitz.de/uz/cc65/">
     <item><em/VICE/ This is portable C64, C128 and few other Commodore computers emulator, you
                can obtain it from: <htmlurl url="http://www.cs.cmu.edu/~dsladic/vice/vice.html"
-               name="http://www.cs.cmu.edu/~dsladic/vice/vice.html">
-    <item><em/Star Commander/ This tool is for DOS right now. You will need it for transferring
+               name="http://www.cs.cmu.edu/~dsladic/vice/vice.html">. VICE package contains
+               c1541 program that is able to convert/unconvert GEOS files to disk images.
+    <item><em/Star Commander/ This tool is only for DOS. You will need it for transferring
                object files from PC to 1541. There's also one important ability of this
                tool - it automatically un-converts .cvt files into GEOS native format on
                disk image files.
+    <item><em/cbm4linux/ A Linux kernel module that allows for communication with 1541 and
+               other Commodore IEC bus drives. It can be replacement for Star Commander if
+               you want only to transfer files to a disk and unconvert using GEOS program for
+               this purpose. Check out: <htmlurl url="http://www.lb.shuttle.de/puffin/cbm4linux/"
+               name="http://www.lb.shuttle.de/puffin/cbm4linux">
 </itemize>
 <p>
 VICE and cc65 are portable - they run on variety of platforms - DOS, Win32 and UNIX. GEOSLib only
 needs cc65.
 <p>
-<em/Update:/ starting from v2.5.0 GEOSLib is a part of cc65 package as its GEOS support.
+<em/Update:/ starting from v2.5.0 GEOSLib is a part of cc65 package as its GEOS support library.
 
 <sect1>Legal
 <p>
@@ -70,9 +105,9 @@ Reference Guide and BSW for GEOS.
 <p>
 GEOSLib is covered by the same license as cc65. You can find the whole text among documentation.
 I would really appreciate if you would like to send me your comments, suggestions, questions,
-changes, bug reports etc. I feel that GEOSLib may be much better. After all, this is the first
-release. I will also appreciate if you will just give me a sign that you are using GEOSLib -
-not especially something big and important, mail me even if you are just playing with it.
+changes, bug reports etc. I will also appreciate if you will just give me a sign that you are
+using GEOSLib - not especially something big and important, mail me even if you are just playing
+with it.
 <p>
 You can send postcards with hellos to:
 <p>
@@ -86,34 +121,20 @@ e-mail: <tt/ytm@elysium.pl/
 <p>
 This chapter describes some rules you ought to obey, and how to use GEOSLib.
 
-<sect1>General rules
-<p>
-Ulrich probably won't like it, but I don't want you to use his standard C functions. In fact, the
-best way (IMO) of programming GEOS with GEOSLib is to only use GEOS lib. You don't need anything
-else. You shouldn't need anything else.
-<p>
-If you really, really need to mix standard libraries with GEOSLib be warned that it probably won't
-work and lookout for the <tt/errno/ - it points to one place when <tt/errno.h/ is included and
-another with <tt/geos.h/.
+<sect1>Usage
 <p>
-Apart from this file which merely describes only standard GEOS library functions you should read
+Apart from this file, which merely describes only standard GEOS library functions, you should read
 <tt/grc/ (GEOS resource compiler) documentation. There are informations about necessary resource
-files (each GEOS application neeeds at least one) and the building process - what should be done
-and in which order.
-
-<sect1>Usage
+files (each GEOS application needs at least one) and the building process - what should be done
+and in what order. Please also read cc65's documentation on how to compile C, assembler and link
+everything together.
 <p>
 All in all, you just need to place
 <tscreen><verb>
-&num;include &lt;geos.h&gt
+&num;include &lt;geos.h&gt;
 </verb></tscreen>
 on top of your source.
 <p>
-Please read cc65's documentation on how to compile C, assembler and link everything together.
-<p>
-GEOSLib building process isn't yet defined stable. Detailed information how to link everything
-together is in separated file together with resource compiler documentation.
-<p>
 As a general rule read the sources of example programs and read the headers. These are the most
 reliable sources of knowledge ;). You will also find there many C macros representing various
 arguments passed to functions. Please use them. You will find your sources easier to understand,
@@ -125,13 +146,17 @@ Screen coordinates are given in pixels unless stated differently.
 
 <sect1>Notes on style
 <p>
-All programs start their execution on <tt/main/ function. Unlike plain C exiting from this function
-doesn't mean end of program. GEOS is event-driven environment where applications are only executing
-events, main loop is in kernal. <tt/main/ function should setup the screen, menus etc. and return.
-Real end of the program should be called from event call, e.g. from menu item. You can force end of
-program and return to DeskTop either by standard <tt/exit (0)/ function or by <tt/EnterDeskTop()/.
-Currently they are almost the same (last minute note: don't use <tt/exit/ ever, it's broken right
-now :-).
+Contrary to typical GEOS assembly program which has a main function called after loading that
+setups the screen, menus, icons etc. exiting from <tt/main/ function in C is equivalent to
+calling <tt/exit()/. These two are the only safe methods of terminating applications. DO NOT
+USE <tt/EnterDeskTop/! Your data may be lost as library destructors and functions registered
+with <tt/atexit/ will not be called.
+<p>
+For GEOS GUI applications the recommended program structure is to have everything initialized
+in <tt/main/ function and at the end of it a call to <tt/MainLoop()/ function. WARNING! This
+function never returns, any code between <tt/MainLoop();/ and the end of <tt/main/ will not
+be executed. You have to call <tt/exit()/ explicitly somewhere in your code (e.g. in a menu
+handler or via DialogBox action).
 <p>
 Whenever possible use definitions from <tt/gsym.h/. The resulting code is translated by cc65 into
 series of <tt/lda/ and <tt/sta/, so you can't do it better :-).
@@ -139,12 +164,25 @@ series of <tt/lda/ and <tt/sta/, so you can't do it better :-).
 Don't hesitate to use library functions. Everything was written with size and speed in mind. In
 fact many calls are just redirections to GEOS kernal which results in simple <tt/jsr/.
 <p>
-You might wonder why I have chosen sometimes weird order of arguments in functions. It is because
-I wanted to avoid unnecessary pushing and popping arguments from stack. cc65 can pass single <tt/int/
-through CPU registers.
+The <tt/main/ function receives the standard <tt/argc/ and <tt/argv/ parameters. There are
+always either 1 or 3 parameters. DOS application name is always set as <tt/argv[0]/.
+If present, <tt/argv[1]/ and <tt/argv[2]/ will be set to data filename and data diskname (it only
+works if user double-clicks on data file associated with your application). Note that it is up
+to your application to determine which of the available (up to four) disk drives has the disk
+with given diskname inside. If this fails your program should ask to insert the proper disk into
+one of available drives.
 <p>
-Do not try to compile in strict ANSI mode. I'm using some cc65 extensions which are not available in
+You might wonder why I have chosen sometimes weird order of arguments in functions. I just
+wanted to avoid unnecessary pushing and popping arguments from stack because cc65 can pass single
+<tt/unsigned int/ through CPU registers.
+<p>
+Do not try to compile in strict ANSI mode. Library uses cc65 extensions which are not available in
 ANSI.
+<p>
+It is possible to use dynamically loaded modules, three such modules are provided:
+GEOS TGI driver, GEOS EMD driver (for VDC extended memory) and GEOS JOY driver.
+Just make sure that their filenames appear UPPERCASE in DeskTop. There are no more special
+recommendations, read cc65 documentation about modules and demo programs source code.
 
 <sect>Library Functions
 <p>
@@ -197,7 +235,7 @@ This draws on screen rectangle filled with current pattern.
 <p>
 <tt/void FrameRectangle (char pattern)/
 <p>
-This one draws frame with given line pattern.
+This one draws frame with given bit pattern (not a pattern from GEOS palette).
 
 <sect3>InvertRectangle
 <p>
@@ -212,8 +250,8 @@ Just as the name says...
 <tt/void RecoverRectangle (void)/
 <p>
 These two functions are for copying parts of the screen to (<tt/Imprint/) and from (<tt/Recover/)
-backbuffer of the screen. For example GEOS drawing new menus on screen first uses
-<tt/ImprintRectangle/ to save the area under menu, and restores it by <tt/RecoverRectangle/ upon
+backbuffer of the screen. For example when drawing new menu box GEOS first uses
+<tt/ImprintRectangle/ to save the area under the box, and restores it by <tt/RecoverRectangle/ upon
 destroying the menu.
 
 <sect2>Line Functions
@@ -223,37 +261,40 @@ horizontal lines.
 
 <sect3>HorizontalLine
 <p>
-<tt/void HorizontalLine (char pattern, char y, int xStart, int xEnd)/
+<tt/void HorizontalLine (char pattern, char y, unsigned xStart, unsigned xEnd)/
 <p>
 This function draws horizontal line using given pattern - here it is a true bit pattern, not
 pattern set by <tt/SetPattern/.
 
 <sect3>InvertLine
 <p>
-<tt/void InvertLine (char y, int xStart, int xEnd)/
+<tt/void InvertLine (char y, unsigned xStart, unsigned xEnd)/
 <p>
 There is only horizontal version.
 
 <sect3>RecoverLine
 <p>
-<tt/void RecoverLine (char y, int xStart, int xEnd)/
+<tt/void RecoverLine (char y, unsigned xStart, unsigned xEnd)/
 <p>
 This function recovers only one line. It is utilized by <tt/RecoverRectangle/. See its description
 for more details.
 
 <sect3>VerticalLine
 <p>
-<tt/void VerticalLine (char pattern, char yStart, char yEnd, int x)/
+<tt/void VerticalLine (char pattern, char yStart, char yEnd, unsigned x)/
 <p>
 This function draws vertical line using given pattern. Note that <tt/pattern/ is not a pattern
 number as set in <tt/SetPattern/ but a true bit pattern.
 
 <sect3>DrawLine
 <p>
-<tt/void DrawLine (struct window *myWindow)/
+<tt/void DrawLine (char mode, struct window *myWindow)/
 <p>
 <tt/top/ parameters of <tt/struct window/ describe the starting point of the line, while
-<tt/bottom/ are for the ending point. Current pattern is used for drawing.
+<tt/bottom/ are for the ending point. If <tt/mode/ is <tt/DRAW_DRAW/ then current pattern from
+<tt/SetPattern/ is used for drawing. If <tt/mode/ is <tt/DRAW_ERASE/ then line is erased from the
+screen. If <tt/mode/ is <tt/DRAW_COPY/ then line is copied from/to back/frontbuffer, according to
+<tt/dispBufferOn/ setting.
 
 <sect2>Point Functions
 <p>
@@ -262,27 +303,38 @@ proper values.
 
 <sect3>DrawPoint
 <p>
-<tt/void DrawPoint (struct pixel *myPixel)/
+<tt/void DrawPoint (char mode, struct pixel *myPixel)/
 <p>
-Draws single point on the screen, no matter what the current pattern is.
+Depending on <tt/mode/ (see <tt/DrawLine/) draws/erases/copies a single point
+on the screen.
 
 <sect3>TestPoint
 <p>
 <tt/char TestPoint (struct pixel *myPixel)/
 <p>
-This function tests if given pixel is set and returns true or false.
+This function tests if given pixel is set and returns <tt/true/ (non-zero) or <tt/false/ (zero).
 
 <sect2>Character and string output
 
+<sect3>cpputs
+<p>
+<tt/cpputsxy (char x, char y, char *myString)/
+<p>
+<tt/cpputs (char *myString)/
+<p>
+Actually this is a part of <tt/conio/, but this function is non-standard. It is
+a variety of <tt/cputs/ that will output string with proportional spacing, not
+fixed like <tt/cputs/.
+
 <sect3>PutChar
 <p>
-<tt/void PutChar (char character, char y, char x)/
+<tt/void PutChar (char character, char y, unsigned x)/
 <p>
 This function outputs single character using current style and font to screen.
 
 <sect3>PutString
 <p>
-<tt/void PutString (char y, int x, char *myString)/
+<tt/void PutString (char *myString, char y, unsigned x)/
 <p>
 Same as <tt/PutChar/ except the fact that you can output whole <tt/NULL/-terminated string.
 See <tt/ggraph.h/ for list of tokens that you can also place in the string - like <tt/CBOLDON/ or
@@ -290,12 +342,12 @@ See <tt/ggraph.h/ for list of tokens that you can also place in the string - lik
 
 <sect3>PutDecimal
 <p>
-<tt/void PutDecimal (char parameter, int value, char y, int x)/
+<tt/void PutDecimal (char parameter, unsigned value, char y, unsigned x)/
 <p>
 This function converts <tt/value/ to its decimal representation and outputs it to the screen.
-Depending on given <tt/parameter/ the string can be filled with zeroes (string always 5 characters
-long) or not, to be left or right justified to given pixel. See <tt/ggraph.h/ for predefined
-values for <tt/parameter/.
+The <tt/parameter/ is the field width in pixels (range 1-31) and mode bits. Depending on them
+the string can be filled with zeroes (string always 5 characters long) or not and left or right
+justified to given pixel. See <tt/ggraph.h/ for predefined values for <tt/parameter/.
 
 <sect2>Font Handling
 
@@ -335,7 +387,7 @@ structure. Note that you can only use packed GEOS bitmaps - simple Photo Scrap i
 
 <sect3>BitmapClip
 <p>
-<tt/void BitmapClip (char skipLeft, char skipRight, int skipTop, struct iconpic *myPic)/
+<tt/void BitmapClip (char skipLeft, char skipRight, unsigned skipTop, struct iconpic *myPic)/
 <p>
 This function acts similar to <tt/BitmapUp/ but you can also define which parts of the bitmap are
 to be drawn - you give the number of columns (8-pixel) to skip on the right and left of the bitmap,
@@ -343,7 +395,7 @@ and the number of rows to skip from the top if it.
 
 <sect3>BitOtherClip
 <p>
-<tt/void BitOtherClip (void *proc1, void *proc2, char skipLeft, char skip Right, int skipTop,
+<tt/void BitOtherClip (void *proc1, void *proc2, char skipLeft, char skip Right, unsigned skipTop,
        struct iconpic *myPic)/
 <p>
 Similar to the previous one with some extension. <tt/proc1/ is called before reading a byte (it
@@ -357,7 +409,7 @@ Here you will find information about functions related with menus and icons.
 
 <sect2>Menus
 <p>
-Menus are essencial for GUI. GEOS can handle only one menu at a time, but each menu can call
+Menus are essential for GUI. GEOS can handle only one menu at a time, but each menu can call
 another one, which results in submenu tree. There can be up to 8 menu levels, each one with up
 to 32 items.
 <p>
@@ -407,13 +459,13 @@ handler code to have the screen clean.
 This one jumps back to the topmost menu. If there is only menu and submenu it works the
 same as <tt/DoPreviousMenu/.
 
-<sect2>Icons
+<sect2>Icon Functions
 <p>
 Icons are working similar to menus except the fact that there is only one level. Icons are
 defined as a screen area filled with a bitmap, but if you would setup icons and erase the
-screen they are still working and cliking in the place where formerly an icon was will cause
-an effect. Similary if you would setup icons and then turn them off with <tt/ClearMouseMode/
-the bitmap will be still on the screen.
+screen they are still active and clicking in the place where formerly an icon was will cause
+an effect. Similarly if you would setup icons and then turn them off with <tt/ClearMouseMode/
+the bitmap will be still on the screen but clicking on it would not cause any action.
 There is only one, but powerful icon function.
 
 <sect3>DoIcons
@@ -425,7 +477,7 @@ look at <tt/Icons/ chapter in this manual.
 
 <sect1>DialogBoxes
 <p>
-This chapter covers the most powerful GEOS function - <tt/DoDlgBox/.
+This chapter covers the most powerful GEOS user interface function - <tt/DoDlgBox/.
 
 <sect2>GEOS standard
 
@@ -453,14 +505,15 @@ GEOS application.
 
 <sect3>DlgBoxYesNo, DlgBoxOkCancel, DlgBoxOk
 <p>
-<tt/char DlgBoxYesNo (char *line1, char*line2)/
+<tt/char DlgBoxYesNo (char *line1, char *line2)/
 <p>
-<tt/char DlgBoxOkCancel (char *line1, char*line2)/
+<tt/char DlgBoxOkCancel (char *line1, char *line2)/
 <p>
-<tt/void DlgBoxOk (char *line1, char*line2)/
+<tt/void DlgBoxOk (char *line1, char *line2)/
 <p>
 These function show two lines of text in standard-sized DialogBox. You can read the code of
 pressed icon from return value. E.g. for <tt/DlgBoxYesNo/ it can only be <tt/YES/ or <tt/NO/.
+You can pass an empty string or NULL to get a blank line.
 
 <sect3>DlgBoxGetString
 <p>
@@ -485,6 +538,23 @@ empty (<tt/NULL/ at the start), then all files with given filetype will be shown
 At present this file selector handles only first 16 files of given type and supports only one
 (current) drive.
 
+<sect3>MessageBox
+<p>
+<tt/char MessageBox (char mode, const char *format, ...)/
+<p>
+This function is a more general one. It works very much like <tt/printf/ in a
+box. The only difference is <tt/mode/ parameter which allows for placing
+default icons (see <tt/gdlgbox.h/ for list of possible <tt/MB_/ values).
+Any too wide text will be clipped to the size of the default window. If mode
+parameter is invalid or equal to <tt/MB_EMPTY/ then the window will be closed
+after a click. Otherwise the user must choose an icon.
+<p>
+Note: use it if you really need (or if you will use it in many places) as
+it adds quite amount of code to your program.
+<p>
+Note: the formatted text <em/cannot exceed/ 255 bytes in length, there is no check
+for that.
+
 <sect1>Mouse, Sprites and Cursors
 <p>
 You will find here functions related to sprite and mouse drawing and handling.
@@ -505,7 +575,7 @@ calls <tt/MouseUp/.
 <p>
 <tt/void ClearMouseMode (void)/
 <p>
-This function disables all mouse actitivies - icons and menus stop to respond to mouse events,
+This function disables all mouse activities - icons and menus stop to respond to mouse events,
 but they are not cleared from the screen.
 
 <sect3>MouseUp and MouseOff
@@ -514,7 +584,7 @@ but they are not cleared from the screen.
 <p>
 <tt/void MouseOff (void)/
 <p>
-The fist function turns the mouse pointer on. It will appear on next IRQ. The second one does
+The first function turns the mouse pointer on. It will appear on next IRQ. The second one does
 the opposite - it turns off the pointer, but its position is still updated by input driver.
 
 <sect3>IsMseInRegion
@@ -522,19 +592,20 @@ the opposite - it turns off the pointer, but its position is still updated by in
 <tt/char IsMseInRegion (struct window *myWindow)/
 <p>
 This function tests if mouse pointer is actually in given range of screen. See <tt/gsprite.h/ for
-possible return values - they describe the position in detail.
+description of bits in return values - they describe the position in detail.
 
 <sect2>Sprites
 <p>
 You are free to use any of the eight sprites, but keep in mind that sprite 0 is actually the mouse
-pointer and sprite 1 can be overwritten when is used as text prompt.
+pointer and sprite 1 can be overwritten when using text prompt. You don't have to worry about
+40/80 column issues because GEOS128 has pretty good sprite emulator for VDC.
 
 <sect3>DrawSprite
 <p>
 <tt/void DrawSprite (char sprite, char *mySprite)/
 <p>
 This function initializes the sprite data. <tt/mySprite/ is a 63-byte table with bitmap data, which
-is copied to system sprite area (at <tt/sprpic/ - see <tt/gsym.h/). Sprite visual registers are
+is copied to system sprite area (at <tt/sprpic/ - see <tt/gsym.h/). Hardware sprite registers are
 not initialized and sprite is not yet visible.
 
 <sect3>PosSprite
@@ -542,7 +613,7 @@ not initialized and sprite is not yet visible.
 <tt/void PosSprite (char sprite, struct pixel *myPixel)/
 <p>
 This function positions the sprite on the screen. Given coordinates are screen ones - they are
-converted to sprite coords by GEOS. Due to this you cannot use this function to position your
+converted to sprite coordinates by GEOS. Due to this you cannot use this function to position your
 sprite off the left or top to the screen.
 
 <sect3>EnablSprite and DisablSprite
@@ -551,8 +622,7 @@ sprite off the left or top to the screen.
 <p>
 <tt/void DisablSprite (char sprite)/
 <p>
-These two functions are responsible for the fact if the sprite will or will not appear on the
-screen.
+These two functions are responsible for making the sprite visible or not.
 
 <sect2>Cursors and Console
 
@@ -569,8 +639,8 @@ range 1-48.
 <p>
 <tt/void PromptOff (void)/
 <p>
-The first function places text prompt in given place and enables it so it blinks and generally is
-visible. The second function is pretty self-explanatory.
+The first function places text prompt in given place and enables blinking.
+The second one is pretty self-explanatory.
 
 <sect3>GetNextChar
 <p>
@@ -587,11 +657,16 @@ you may easily corrupt data on disks. Also remember that contemporary GEOS suppo
 devices and sticking to 1541 track layout (e.g. expecting the directory on track 18) might be
 dangerous.
 <p>
+For some purposes you might consider using <tt/dio.h/ interface to disk access. It is native.
+<p>
 All GEOS disk functions return error code in X register. In some cases this is returned by
-GEOSLib function (if its type is <tt/char/), but in all cases last error is saved in <tt/errno/
-location. If it is nonzero - an error occured. See <tt/gdisk.h/ for list of errorcodes.
+GEOSLib function (if its type is <tt/char/), but in all cases last error is saved in <tt/__oserror/
+location. If it is nonzero - an error occured. See <tt/gdisk.h/ for the list of possible errorcodes.
+You need to include <tt/errno.h/ to get <tt/__oserror/, together with standard <tt/errno/. The
+latter gives less verbose, but still usable information and can be used with <tt/strerror/.
+Probably you will get more information using <tt/_stroserror/ in similar way.
 <p>
-Passing parameters use always e.g. <tt/ReadBuff (&amp;myTrSe)/.
+For passing parameters use almost always pointer to your data e.g. <tt/ReadBuff (&amp;myTrSe)/.
 
 <sect2>Buffer functions
 <p>
@@ -603,7 +678,7 @@ These functions are taking single data sector (256 bytes) to read or write on a
 <p>
 <tt/char WriteBuff (struct tr_se *myTrSe)/
 <p>
-These functions are reading and writting sector placed at <tt/diskBlkBuf/.
+These functions read and write sector placed at <tt/diskBlkBuf/.
 
 <sect3>GetBlock and ReadBlock
 <p>
@@ -623,8 +698,8 @@ enabled. <tt/ReadBlock/ assumes that it is already enabled thus being slightly f
 <p>
 <tt/char VerWriteBlock (struct tr_se *myTrSe, char *buffer)/
 <p>
-Similar to previous but needed for writting the disk. <tt/VerWriteBlock/ verifies the data after
-writting. In case of error five tries are attempted before error code is returned.
+Similar to previous but needed for writing the disk. <tt/VerWriteBlock/ verifies the data after
+writing. In case of error five tries are attempted before error code is returned.
 
 <sect2>Directory header
 <p>
@@ -645,13 +720,13 @@ Note that passed pointer must point to an array of at least 17 bytes.
 <p>
 <tt/char PutDirHead (void)/
 <p>
-These functions are reading and writting the directory header. You should use <tt/GetDirHead/ before
+These functions are reading and writing the directory header. You should use <tt/GetDirHead/ before
 using any functions described below, and you should use <tt/PutDirHead/ to save the changes on the
 disk. Otherwise they will be lost. Operating area is the <tt/curDirHead/.
 
 <sect3>CalcBlksFree
 <p>
-<tt/int CalcBlksFree (void)/
+<tt/unsigned CalcBlksFree (void)/
 <p>
 This function returns the number of free blocks on current disk. It is counted using data in
 <tt/curDirHead/ so you must initialize the disk before calling it.
@@ -677,31 +752,32 @@ using.
 <p>
 This function returns the bit value from BAM (Block Allocation Map) for given sector. The bit is
 set if the sector is free to use. Returned value is always zero if the sector is already allocated.
-In fact, this function could be described as e.g. <tt/SectInUse/ and used in following way:
+In fact, this function could be used in a following way:
 <tscreen><verb>
+&num;define BlockInUse FindBAMBit
 ...
-if (!SectInUse(&amp;myTrSe)) &lcub;
+if (!BlockInUse(&amp;myTrSe)) &lcub;
 ... block not allocated ...
 &rcub;
 </verb></tscreen>
 <p>
-Anyway, I feel that this function is slightly low-level, maybe too low-level.
+Anyway, I feel that this function is too low-level.
 
 <sect3>BlkAlloc and NxtBlkAlloc
 <p>
-<tt/char BlkAlloc (struct tr_se output&lsqb;&rsqb, int length)/
+<tt/char BlkAlloc (struct tr_se output&lsqb;&rsqb, unsigned length)/
 <p>
-<tt/char NxtBlkAlloc (struct tr_se *myTrSe, struct tr_se output&lsqb;&rsqb, int length)/
+<tt/char NxtBlkAlloc (struct tr_se *myTrSe, struct tr_se output&lsqb;&rsqb, unsigned length)/
 <p>
 Both functions are allocating enough disk sectors to fit the number of <tt/length/ in them. You
 will find output in <tt/output/ which is table of <tt/struct tr_se/. The last entry will have the
-number of track equal to 0 and sector equal to 255. The simpliest way of using them is to use
+number of track equal to 0 and sector equal to 255. The simplest way of using them is to use
 predefined space in GEOS data space and pass <tt/fileTrScTab/, which is a predefined table.
 <p>
 The difference between those two is that <tt/NextBlkAlloc/ will start allocating from given sector,
-and <tt/BlkAlloc/ starts from first nonused sector.
+and <tt/BlkAlloc/ starts from the first nonused sector.
 <p>
-You need to <tt/PutDirHead/ to save any changes in BAM.
+You need to use <tt/PutDirHead/ later to save any changes in BAM.
 
 <sect3>FreeBlock
 <p>
@@ -713,21 +789,19 @@ Simply deallocates a block in BAM. You need to update BAM with <tt/PutDirHead/.
 <p>
 <tt/struct tr_se SetNextFree (struct tr_se *myTrSe)/
 <p>
-This function finds first free sector starting from given track and sector. It might return the
-same argument if the given block is not allocated. I wanted this function to be type-clean, but
-it made usage a bit tricky. To assign a value to own <tt/struct tr_se/ you have to cast both
-variables to <tt/int/. E.g.
+This function finds the first free sector starting from given track and sector and allocates it.
+It might return the same argument if the given block is not allocated. I wanted it to be type
+clean, but it made usage a bit tricky. To assign a value to own <tt/struct tr_se/ you have to
+cast both variables to <tt/unsigned/. E.g.
 <tscreen><verb>
 struct tr_se myTrSe;
 ...
-(int)myTrSe=(int)SetNextFree(&amp;otherTrSe);
+(unsigned)myTrSe=(unsigned)SetNextFree(&amp;otherTrSe);
 </verb></tscreen>
 <p>
 In this example <tt/otherTrSe/ can be replaced by <tt/myTrSe/.
 <p>
-NOTE that you <em/must/ use casting to have correct values.
-<p>
-<tt/SetNextFree/ only finds next free sector, it doesn't allocate it.
+Note: you <em/must/ use casting to have correct values.
 
 <sect2>Low-level disk IO
 <p>
@@ -749,8 +823,8 @@ This is useful for sending some DOS commands for drive e.g. for formatting. Note
 interaction with Kernal in ROM you have to call <tt/InitForIO/. You don't have to worry about speed.
 <tt/EnterTurbo/ will only enable TurboDos (no code transfer) if TurboDos was disabled with
 <tt/ExitTurbo/. <tt/PurgeTurbo/ acts different from <tt/ExitTurbo/ - it not only disables TurboDos,
-but also removes it from drive RAM (not quite true, but it works like that). After a <tt/PurgeTurbo/,
-<tt/EnterTurbo/ will have to reload drive RAM.
+but also removes it from drive RAM (not quite true, but it works like that). After using
+<tt/PurgeTurbo/ the next call to <tt/EnterTurbo/ will reload drive RAM.
 
 <sect3>ChangeDiskDevice
 <p>
@@ -759,13 +833,11 @@ but also removes it from drive RAM (not quite true, but it works like that). Aft
 This function changes logical number of current device (in fact drives only) with given one. It is
 usable for swapping drives. There's no check if given <tt/newDevice/ already exist, so if you want
 to change the logical number of drive 8 to 9 and you have drive number 9 then GEOS will probably
-hung on disk access. Use safe, large numbers. Note that safe IEC range is 0-32, but devices with
-numbers below 8 shouldn't be used (there is 'DiskDevice' in the name of this function and devices
-0-7 are not 'DiskDevices' you know :-).
+hang on disk access. Use safe, large numbers. Note that safe IEC range is 8-31.
 
 <sect2>Disk Initialization
 <p>
-GEOS has two functions for initialization ('logging' as they say on CP&bsol;M) the disk.
+GEOS has two functions for initialization ('logging in' as they say on CP&bsol;M) the disk.
 <sect3>OpenDisk
 <p>
 <tt/char OpenDisk (void)/
@@ -796,16 +868,16 @@ Functions described here are common for SEQ and VLIR structures.
 <tt/struct filehandle *GetNxtDirEntry (void)/
 <p>
 These two functions are best suited for scanning whole directory for particular files. Note that
-returned filehandles describe all file slots in directories - even those with deleted files.
-The return value can be obtained by casting both sides to <tt/int/ - as in <tt/SetNextFree/
-function, or read directly after call to those two functions from <tt/r5/. Current sector number
+returned filehandles describes all file slots in the directory - even those with deleted files.
+The return value can be obtained by casting both sides to <tt/unsigned/ - as in <tt/SetNextFree/
+function or read directly after call to those two functions from <tt/r5/. Current sector number
 is in <tt/r1/ and sector data itself is in <tt/diskBlkBuf/.
 
 <sect3>FindFile
 <p>
 <tt/char FindFile (char *fName)/
 <p>
-This function scans whole directory for given filename. It returns either 0 (success) or 5
+This function scans whole directory for the given filename. It returns either 0 (success) or 5
 (FILE_NOT_FOUND, defined in <tt/gdisk.h/) or any other fatal disk read error. After successful
 <tt/FindFile/ you will have <tt/struct filehandle/ at <tt/dirEntryBuf/ filled with file's data and
 other registers set as described in <tt/GetNxtDirEntry/.
@@ -816,17 +888,19 @@ other registers set as described in <tt/GetNxtDirEntry/.
 <p>
 This function scans directory and fills a table at <tt/buffer/ with <tt/char &lsqb;17&rsqb;/ entries.
 <tt/fType/ is GEOS type of searched files and <tt/classTxt/ is a string for Class field in file
-header. Class will match if given will be shorter than that found in file's header block. This
-way if you want just to find all files with given GEOS type you must pass empty string as
-<tt/classTxt/. <tt/fMaxNum/ is the maximal number of found files, thus the <tt/buffer/ must
-provide area of size equal to <tt/17 * fMaxNum/. This function returns errorcode. The number of
-actually found files can be restored from <tt/r7H/.
+header. Class will match if given will be equal or shorter than that found in file's header block.
+If you want just to find all files with given GEOS type you should pass empty string or <tt/NULL/ as
+<tt/classTxt/. Be warned that for searching <tt/NON_GEOS/ files must pass <tt/NULL/ as <tt/classTxt/.
+<tt/fMaxNum/ is the maximal number of found files, thus the <tt/buffer/ must
+provide area of size equal to <tt/17 * fMaxNum/.
+This function returns the number of found files, ranging from 0 to number passed as <tt/fMaxNum/.
+Return value can be also restored from <tt/r7H/.
 
 <sect3>DeleteFile
 <p>
 <tt/char DeleteFile (char *fName)/
 <p>
-This function delets a file by its name. It works for SEQ and VLIR files.
+This function deletes a file by its name. It works for SEQ and VLIR files.
 
 <sect3>RenameFile
 <p>
@@ -846,9 +920,22 @@ you can pass address of <tt/dirEntryBuf/.
 Functions described here are common for SEQ and VLIR structures because arguments passed are
 starting track and sector which may point either to start of a chain for VLIR or data for SEQ.
 
+<sect3>GetFile
+<p>
+<tt/char __fastcall__ GetFile(char flag, const char *fname, const char *loadaddr, const char *datadname, const char *datafname)/
+<p>
+This routine loads and runs a given file <tt/fname/. The file must be one of following types:
+<tt/SYSTEM, DESK_ACC, APPLICATION, APPL_DATA, PRINTER,/ or <tt/INPUT_DEVICE/. The execution
+address is taken from file header. If it is zero, then file is only loaded. Only the first chain
+from VLIR files is loaded. If <tt/flag/ has bit 0 set then load address is taken from <tt/loadaddr/
+and not from file header. In this case <tt/APPLICATION/ files will be only loaded, not executed.
+This does not apply to <tt/DESK_ACC/. If either bit 6 or 7 of <tt/flag/ are set, then 16 bytes from
+<tt/datadname/ is copied to <tt/dataDiskName/ and 16 bytes from <tt/datafname/ goes to <tt/dataFileName/
+thus becoming parameters for the new application. Pass <tt/NULL/ as any unused parameter.
+
 <sect3>ReadFile
 <p>
-<tt/char ReadFile (struct tr_se *myTrSe, char *buffer, int fLength)/
+<tt/char ReadFile (struct tr_se *myTrSe, char *buffer, unsigned fLength)/
 <p>
 This function reads at most <tt/fLength/ bytes into <tt/buffer/ from chained sectors starting at
 <tt/myTrSe/.
@@ -857,27 +944,31 @@ This function reads at most <tt/fLength/ bytes into <tt/buffer/ from chained sec
 <p>
 <tt/char ReadByte (void)/
 <p>
-This function returns next byte from file. Before first call to this function you must load the
-first sector of file, easiest way by using <tt/GetBlock/ and set <tt/r5/ to the offset (you will
-want to skip the link, so use the value of 2 here). Then you may call <tt/ReadByte/.
-Remember to not modify <tt/r1/, <tt/r4/ and <tt/r5/.
+This function returns next byte from a file. Before the first call to it you must load <tt/r5/
+with <tt/NULL/, <tt/r4/ with sector buffer address and <tt/r1/ with track and sector of the
+first block of a file.
+Remember to not modify <tt/r1/, <tt/r4/ and <tt/r5/. These registers must be preserved between
+calls to <tt/ReadByte/.
 <p>
-Returned value is valid only if there wasn't any error. End of file is marked as <tt/BFR_OVERFLOW/
-in <tt/errno/, this is set when trying to read one byte after the end of file.
+Returned value is valid only if there was no error. End of file is marked as <tt/BFR_OVERFLOW/
+in <tt/__oserror/, this is set when trying to read one byte after the end of file, in this case
+returned value is invalid.
 
 <sect3>SaveFile
 <p>
-<tt/char SaveFile (struct fileheader *myHeader)/
+<tt/char SaveFile (char skip, struct fileheader *myHeader)/
 <p>
 <tt/SaveFile/ will take care of everything needed to create a GEOS file, no matter VLIR of SEQ
 structure. All you need to do is to place data in proper place and prepare a header which will
-contain all information about a file.
-
+contain all information about a file. The <tt/skip/ parameter says how many directory pages you
+want to skip before searching for a free slot for directory entry. In most cases you will put
+<tt/0/ there.
+<p>
 You have to declare a <tt/struct fileheader/ and fill it with proper values. There is only one
-difference - the first two bytes which are link to nonexistant next sector are replaced by a
+difference - the first two bytes which are link to nonexistent next sector are replaced by a
 pointer to the DOS filename of the file.
-
-When saving files two most important fields in <tt/struct fileheader/ are <tt/fileheader.load_address/
+<p>
+When saving sequential files two most important fields in <tt/struct fileheader/ are <tt/fileheader.load_address/
 and <tt/fileheader.end_address/.
 
 <sect3>FreeFile
@@ -913,7 +1004,7 @@ E.g. size of whole VLIR file can be retrieved by reading <tt/VLIRInfo.fileSize/.
 <p>
 <tt/char OpenRecordFile (char *fName)/
 <p>
-This function finds and opens given file. An error is returned if file is not found or it is not
+This function finds and opens given file. An error is returned if file is not found or if it is not
 in VLIR format. Information in <tt/VLIRInfo/ is initialized. VLIR track and sector table is
 loaded at <tt/fileTrScTab/ and will be valid until call to <tt/CloseRecordFile/ so don't modify it.
 You should <tt/PointRecord/ before trying to do something with file.
@@ -928,8 +1019,8 @@ This function calls <tt/UpdateRecordFile/ and clears internal GEOS variables.
 <p>
 <tt/char UpdateRecordFile (void)/
 <p>
-This function fill check <tt/VLIRInfo.fileWritten/ flag and if it is set, then <tt/curDirHead/ will
-be updated along with size and date stamps in directory entry.
+This function will check <tt/VLIRInfo.fileWritten/ flag and if it is set, then <tt/curDirHead/ is
+updated along with size and date stamps in directory entry.
 
 <sect3>PointRecord
 <p>
@@ -972,9 +1063,9 @@ can be found in <tt/VLIRInfo.curRecord + 1/).
 
 <sect3>ReadRecord and WriteRecord
 <p>
-<tt/char ReadRecord (char *buffer, int fLength)/
+<tt/char ReadRecord (char *buffer, unsigned fLength)/
 <p>
-<tt/char WriteRecord (char *buffer, int fLength)/
+<tt/char WriteRecord (char *buffer, unsigned fLength)/
 <p>
 This function will load or save at most <tt/fLength/ bytes from currently pointed record into or from
 <tt/buffer/.
@@ -984,12 +1075,14 @@ This function will load or save at most <tt/fLength/ bytes from currently pointe
 Functions covered in this section are common for whole C world - copying memory parts and
 strings is one of the main computer tasks. GEOS also has interface to do this. These functions
 are replacement for those like <tt/memset, memcpy, strcpy/ etc. from standard libraries.
-
-However they have slighty different calling convention (order of arguments to be specific), so
-please check their syntax here before direct replacing.
-
-Please note that the memory described as <tt/strings/ are up to 255 characters (without
-counting the terminating <tt/NULL/), and <tt/regions/ cover whole 64K of memory.
+If you are dealing with short strings (up to 255 characters) you should use these functions
+instead of standard ones. E.g. <tt/CopyString/ instead of <tt/strcpy/. It will work faster.
+<p>
+However some of them have slightly different calling convention (order of arguments to be specific),
+so please check their syntax here before direct replacing.
+<p>
+Please note that the memory areas described here as <em/strings/ are up to 255 characters (without
+counting the terminating <tt/NULL/), and <em/regions/ can cover whole 64K of memory.
 
 <sect2>CopyString
 <p>
@@ -1003,7 +1096,7 @@ is also copied.
 <tt/char CmpString (char *s1, char *s2)/
 <p>
 This function compares string <tt/s1/ to <tt/s2/ for equality - this is case sensitive, and both
-strings have to have the same length. It returns either <tt/true/ or <tt/false/.
+strings have to have the same length. It returns either <tt/true/ (non-zero) or <tt/false/ (zero).
 
 <sect2>CopyFString and CmpFString
 <p>
@@ -1017,28 +1110,28 @@ characters - they are not treated as delimiters.
 
 <sect2>CRC
 <p>
-<tt/int CRC (char *src, int length)/
+<tt/unsigned CRC (char *src, unsigned length)/
 <p>
 This function calculates the CRC checksum for given memory range. I don't know if it is
 compatible with standard CRC routines.
 
 <sect2>FillRam and ClearRam
 <p>
-<tt/void FillRam (char value, char *dest, int length)/
+<tt/void *FillRam (char *dest, char value, unsigned length)/
 <p>
-<tt/void ClearRam (char *dest, int length)/
+<tt/void *ClearRam (char *dest, unsigned length)/
 <p>
-Both functions are filling given memory range. <tt/ClearRam/ fills with <tt/NULLs/, while
+Both functions are filling given memory range. <tt/ClearRam/ fills with <tt/0s/, while
 <tt/FillRam/ uses given <tt/value/. Be warned that these functions destroy <tt/r0, r1 and
-r2L/ registers.
+r2L/ registers. These are aliases for <tt/memset/ and <tt/bzero/, respectively.
 
 <sect2>MoveData
 <p>
-<tt/void MoveData (char *src, char *dest, int length)/
+<tt/void *MoveData (char *dest, char *src, unsigned length)/
 <p>
 This functions copies one memory region to another. There are checks for overlap and the
 non-destructive method is chosen. Be warned that this function destroys contents of
-<tt/r0, r1 and r2/ registers.
+<tt/r0, r1 and r2/ registers. This is also alias for <tt/memcpy/
 
 <sect2>InitRam
 <p>
@@ -1050,27 +1143,29 @@ This is done with <tt/table/ where everything is defined. See structures chapter
 
 <sect2>Stash, Fetch, Swap, and VerifyRAM
 <p>
-<tt/void StashRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
+<tt/void StashRAM (char bank, unsigned length, char *reuAddress, char *cpuAddress)/
 <p>
-<tt/void FetchRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
+<tt/void FetchRAM (char bank, unsigned length, char *reuAddress, char *cpuAddress)/
 <p>
-<tt/void SwapRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
+<tt/void SwapRAM (char bank, unsigned length, char *reuAddress, char *cpuAddress)/
 <p>
-<tt/ char VerifyRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
+<tt/ char VerifyRAM (char bank, unsigned length, char *reuAddress, char *cpuAddress)/
 <p>
 These functions are interface to REU - Ram Expansion Unit. I think that they are self-explanatory.
+You can check for REU presence by taking value of <tt/ramExpSize/. You have to do it before
+using any of these functions.
 
 <sect1>Processes and Multitasking
 <p>
 Weird? Not at all. GEOS has limited multitasking ability. You can set up a chain of functions
-called in specified intervals and you can sleep the main program without disturbing other
-tasks.
+called in specified intervals and you can put the main program to sleep without disturbing other
+tasks and making user interface unresponsive.
 
 <sect2>InitProcesses
 <p>
 <tt/void InitProcesses (char number, struct process *processTab)/
 <p>
-This is the main initialization routine. After calling this processes are set up, but not
+This is the main initialization routine. After calling it processes are set up, but not
 enabled. The parameters for <tt/InitProcesses/ are:
 <itemize>
     <item><tt/number/ - number of processes
@@ -1084,7 +1179,7 @@ systems there are 50 jiffies per second, while on NTSC there are 60.
 The maximum number of tasks is 20. Be warned that GEOS doesn't check if parameters are valid and
 if <tt/processTab/ would be too large it would overwrite existing data in GEOS space.
 <p>
-There's one important thing - last entry in <tt/processTab/ have to be <tt/NULL,NULL/, so the
+There's one important thing - the last entry in <tt/processTab/ has to be <tt/NULL,NULL/, so the
 maximum size of <tt/processTab/ is equal to 21.
 <p>
 See description of <tt/process/ structure for more detailed discussion on this.
@@ -1109,6 +1204,7 @@ after <tt/InitProcesses/, because it resets all flags and counters and it starts
 <tt/void UnBlockProcess (char processNumber)/
 <p>
 <tt/BlockProcess/ disables the execution of given process, but this does not disable the timers.
+It means that if you call <tt/UnBlockProcess/ before timer runs out, the process will be executed.
 <p>
 <tt/UnBlockProcess/ does the opposite.
 
@@ -1119,20 +1215,20 @@ after <tt/InitProcesses/, because it resets all flags and counters and it starts
 <tt/void UnFreezeProcess (char processNumber)/
 <p>
 <tt/FreezeProcess/ disables timer for given process. <tt/UnFreezeProcess/ does the opposite.
-This is not equal to <tt/RestartProcess/ as timers are not filled with initial value.
+This is not equal to <tt/RestartProcess/ as timers are not reloaded with initial value.
 
 <sect2>Sleep
 <p>
-<tt/void Sleep (int jiffies)/
+<tt/void Sleep (unsigned jiffies)/
 <p>
-This function is multitasking sleep - the program is halted, but it doesn't block other functions.
-The only argument here is the number of jiffies to wait until app will wake up.
-<p>
-You can force to sleep not only the main application routine, but also processes-tasks. Be warned
-that the maximum number of sleeping functions is 20. If it would be larger it will overwrite
-parameters of already sleeping functions in GEOS kernal data space, leading to crash.
+This function is multitasking sleep - the program is halted, but it doesn't block other functions
+e.g. callbacks from menus and icons.
+The only argument here is the number of jiffies to wait until app will wake up. It depends on
+video mode (PAL or NTSC) how many jiffies there are per second (50 or 60, respectively).
+If you don't want to worry about it and need only full second resolution, call standard
+<tt/sleep/ function from <tt/unistd.h/.
 
-<sect1>System
+<sect1>System Functions
 
 <sect2>FirstInit
 <p>
@@ -1148,22 +1244,25 @@ up. You shouldn't use this unless you know what you are doing.
 <tt/void DoneWithIO (void)/
 <p>
 These functions are called by some disk routines. You should call them only if you want to
-do something with IO registers or call one of Kernal's routines.
+do something with IO registers or call one of Kernal ROM routines. Note that this is rather an
+expensive way of turning off IRQs and enabling IO.
 
 <sect2>MainLoop
 <p>
 <tt/void MainLoop (void)/
 <p>
-Your programs exits to MainLoop upon exiting from <tt/main/, but you might need this function in
-menu and icon code. When in <tt/MainLoop/ systems waits for your action - using icons, keyboard
-or menus to force some specific action from program.
+Returns control to the system. Any code between call to <tt/MainLoop/ and the end of current
+function will never be executed. When in <tt/MainLoop/ systems waits for your action - using
+icons, keyboard or menus to force some specific action from program. You have to define
+proper handlers before that.
 
 <sect2>EnterDeskTop
 <p>
 <tt/void EnterDeskTop (void)/
 <p>
-This is default exit code of your application. It is finish of <tt/exit()/, but you may need it
-in other places of application.
+This is an alias for <tt/exit(0)/ so you will never burn yourself. Anyway, you should not
+use it. Always use <tt/exit()/ instead. Library destructors and functions registered with
+<tt/atexit()/ are called.
 
 <sect2>ToBASIC
 <p>
@@ -1171,6 +1270,9 @@ in other places of application.
 <p>
 This one is another way of finishing application - forcing GEOS to shutdown and exit to BASIC.
 I was considering whether to include it or not, but maybe someone will need it. Which is I doubt.
+<p>
+<em/WARNING:/ library destructors and functions registered with <tt/atexit()/ will not be called
+so it is quite unsafe way to finish your program.
 
 <sect2>Panic
 <p>
@@ -1180,25 +1282,28 @@ This calls system's <tt/Panic/ handler - it shows dialog box with message
 <tscreen><verb>
 System error at:xxxx
 </verb></tscreen>
-where <tt/xxxx/ is last known execution address (caller). By default this is binded to <tt/BRK/
-instruction, but it might be usable in debugging as kind of <tt/assert/.
+where <tt/xxxx/ is last known execution address (caller). By default this is bound to <tt/BRK/
+instruction, but it might be usable in debugging as kind of <tt/assert/. (Note that <tt/assert/
+is available as a separate function and will give you more information than that).
 <p>
-System is halted after call to <tt/Panic/.
+System is halted after call to <tt/Panic/ which means that library destructors will not be
+called and some data may be lost (no wonder you're panicking).
 
 <sect2>CallRoutine
 <p>
-<tt/void CallRoutine (void &ast; myFunct)/
+<tt/void CallRoutine (void &ast;myFunct)/
 <p>
 This is system caller routine. You need to provide pointer to a function and it will be immediately
 called, unless the pointer is equal to <tt/NULL/. This is the main functionality of this function -
-you need not to worry if the pointer is valid.
+you don't need to check if the pointer is valid.
 
 <sect2>GetSerialNumber
 <p>
-<tt/int GetSerialNumber (void)/
+<tt/unsigned GetSerialNumber (void)/
 <p>
-This function returns the serial number of system. It might be used for copy-protection, but you
-shouldn't do this. Please remember that the Free Software is a true power.
+This function returns the serial number of system. It might be used for copy-protection.
+However, please remember that the Free Software is a true power and you are using it
+right now.
 
 <sect2>GetRandom
 <p>
@@ -1209,37 +1314,64 @@ This function returns a random number. It can be also read from <tt/random/ e.g.
 a=random;
 </verb></tscreen>
 but by calling this function you are sure that the results will be always different.
-<tt/random/ is updated once a frame (50Hz) and on every call to <tt/GetRandom/
+<tt/random/ is updated once a frame (50Hz PAL) and on every call to <tt/GetRandom/.
+<p>
+Note that it is not the same as <tt/rand/ function from the standard library. <tt/GetRandom/
+will give you unpredictable results (if IRQs would occur between calls to it) while
+<tt/rand/ conforms to the standard and for given seed (<tt/srand/) it always returns with the
+same sequence of values.
 
 <sect2>SetDevice
 <p>
-<tt/void SetDevice (char)/
+<tt/void SetDevice (char device)/
 <p>
 This function sets current device to given. It might be used together with <tt/InitForIO/,
 <tt/DoneWithIO/ and some Kernal routines. Unless new device is a disk drive this only sets
 new value in <tt/curDevice/, in other case new disk driver is loaded from REU or internal RAM.
 
+<sect2>get_ostype
+<p>
+<tt/char get_ostype (void)/
+<p>
+This function returns GEOS Kernal version combined (by logical OR) with machine type. Read
+<tt/gsys.h/ for definitions of returned values.
+
+<sect2>get_tv
+<p>
+<tt/char get_tv (void)/
+<p>
+This function returns PAL/NTSC flag combined (by logical OR) with 40/80 columns flag. This is
+not the best way to check if screen has 40 or 80 columns since PAL/NTSC check is always
+performed and it can take as long as full raster frame. If you just want to know if
+screen has 40 or 80 columns use expression <tt/graphMode & 0x80/ which returns <tt/0/ for
+40 columns and <tt/0x80/ for 80 columns. Remember that this parameter can be changed during
+runtime. It is unclear if this will work for GEOS 64 so you probably do not want to test
+anything if not running under GEOS128. Use <tt/get_ostype/ to check it. Read <tt/gsys.h/ for
+definitions of returned values.
+
 <sect>Library Structures
 <p>
-To simplify using and optimize passing parameters to functions I have declared several structures
-which describe most common objects. Some of these structures are binded to static addresses in
-GEOS data space ($8000-$8fff), so you can use their fields directly in optimized way.
+To simplify usage and optimize passing parameters to functions I have declared several structures
+which describe most common objects. Some of these structures are bound to static addresses in
+GEOS data space (<tt/$8000-$8fff/), so you can use their fields directly in optimized way.
 Please see <tt/gsym.h/ and find them. All structures are defined in <tt/gstruct.h/ and you may
 find also some comments there.
 
-<sect1>Graphics
+<sect1>Graphics Structures
 
 <sect2>pixel
 <p>
-One simple structure describing point on the screen.
+One simple structure describing point on the screen.
 
 <sect2>fontdesc
 <p>
-This structure describes font in one pointsize. There is current font - <tt/struct fontdesc/
-binded at <tt/curFontDesc/. You can also force GEOS to use your own font by calling
-<tt/LoadCharSet/. You just need to open a VLIR font file and load one record - one pointsize
+This structure describes font in one pointsize. There is current font - <tt/struct fontdesc/
+bound to <tt/curFontDesc/. You can also force GEOS to use your own fonts by calling
+<tt/LoadCharSet/. You just need to open a VLIR font file and load one record - one pointsize -
 somewhere. At the start of this area you already have all data for <tt/fontdesc/ so you can
-pass a pointer to the load adress of that pointsize to <tt/LoadCharSet/.
+pass a pointer to the load address of that pointsize to <tt/LoadCharSet/. (Note that although
+it has 'Load' in the name, that function loads only GEOS internal data structures, not data
+from disk).
 
 <sect2>window
 <p>
@@ -1280,13 +1412,14 @@ has following fields:
 <p>
 This simple structure holds track and sector number of something. Do not expect the track to be
 in range 1-35, as GEOS can support many various and weird devices. For example my C128 256K
-expansion is utilized as RAMDisk with layout of 4 tracks 128 sectors each.
+expansion is utilized as RAMDisk with layout of 4 tracks 128 sectors each. However assuming that
+track number equal to 0 is illegal might be wise.
 
 <sect2>f_date
 <p>
 This is placeholder for file datestamp. This structure is also present in <tt/struct filehandle/.
-GEOS is not Y2K compliant, so if current file in <tt/filehandle.date.year/ value less than 86 you
-can safely assume that it is e.g. 2085 - not 2086.
+GEOS is not Y2K compliant, so if current file has in <tt/filehandle.date.year/ value less than 86
+you can safely assume that it is e.g. 2004 and not 1904.
 
 <sect2>filehandle
 <p>
@@ -1301,7 +1434,7 @@ fixed area using <tt/GetFHdrInfo/. (note that <tt/fileHeader/ is a place in memo
 <tt/fileheader/ is a structure).
 You will also need own fileheader for <tt/SaveFile/.
 
-<sect1>System
+<sect1>System Structures
 
 <sect2>s_date
 <p>
@@ -1315,9 +1448,9 @@ pair.
 You should declare a table of that type to prepare data for <tt/InitProcesses/. The maximum number
 of processes is 20, and the last entry has to be equal to <tt/&lcub;NULL,NULL&rcub;/, so this table may hold
 only 21 entries. The first member of this structure (<tt/pointer/) holds the pointer to called
-function (void returning void), you will probably have to cast that pointer into int. The second
-field <tt/jiffies/ holds the amount of time between calls to that function. On PAL systems there
-are 50 jiffies per second, while NTSC have 60 of them.
+function (void returning void), you will probably have to cast that pointer into <tt/unsigned int/.
+The second field <tt/jiffies/ holds the amount of time between calls to that function.
+On PAL systems there are 50 jiffies per second, while NTSC have 60 of them.
 
 <sect1>Few thing in detail...
 <p>
@@ -1352,10 +1485,10 @@ just in the content.
 Here is how single descriptor looks like:
 <tscreen><verb>
 void myMenu = &lcub;
-       (char)top, (char)botom,                 // this is the size of the menubox
-       (unsigned)left, (unsigned)right,        // counting all items in current descriptor
-       (char)number_of_items | type_of_menu,   // number of following items ORed with
-                                               // type of this menu, it can be either
+       (char)top, (char)bottom,                // this is the size of the menubox
+       (unsigned)left, (unsigned)right,        // counting all items in current descriptor
+       (char)number_of_items | type_of_menu,   // number of following items ORed with
+                                               // type of this menu, it can be either
        // HORIZONTAL or VERTICAL if you will have also bit 6 set then menu won't be closed
        // after moving mouse pointer outside the menubox. You can have at most 31 items.
 </verb></tscreen>
@@ -1421,10 +1554,10 @@ default icons and the number of selected icon will be returned from window proce
        DB_ICON(OK, DBI_X_0, DBI_Y_0),
        ...
 </verb></tscreen>
-Note that position is counted from top left corner of window, not entire screen and that the 'x'
+Note that the position is counted from top left corner of window, not entire screen and that the 'x'
 position is counted in cards (8-pixel) and not in pixels. This is true also for all following commands.
 <tt/DBI_X_0/ and <tt/DBI_Y_0/ are predefined (see <tt/gdlgbox.h/ for more), default positions
-which will make icons to appear on default window directly in the place where you would expect them.
+which will make icons to appear on default window exactly where you would expect them.
 <p>
 <tt/DB_TXTSTR (x, y, text)/ will cause to show given text in the window.
 <p>
@@ -1434,7 +1567,7 @@ is variable. Consider following:
 <tscreen><verb>
 char text = "foo";
        ...
-       r15=(int)text;          // in code just before call to DoDlgBox
+       r15=(unsigned)text;             // in code just before call to DoDlgBox
        ...
        DB_VARSTR (TXT_LN_X, TXT_LN_1_Y, &amp;r15),
        ...
@@ -1446,8 +1579,7 @@ will cause to appear the word ``foo'' in the window, but you may store the point
 previous example and points to place where text is to be stored. Note that the contents of this
 place will be shown upon creating window. <tt/length/ is the maximum number of characters to input.
 <p>
-<tt/DB_SYSOPV(ptr)/ - this sets <tt/otherPressVec/ to given pointer. I'm not sure, what this really
-mean.
+<tt/DB_SYSOPV(ptr)/ - this sets <tt/otherPressVec/ to given pointer. It is called on every keypress.
 <p>
 <tt/DB_GRPHSTR(ptr)/ - data for this command is the pointer for <tt/GraphicsString/ commands.
 <p>
@@ -1490,9 +1622,54 @@ void example = &lcub;
     (unsigned)address_to_store_values_at,
     (char)number_of_bytes_that_follow,
     (char)data,(char)data (...)
-    (...) - more such definitions
-    (unsigned)NULL - address of 0 ends the table
+    // more such definitions
+    (unsigned)NULL // address of 0 ends the table
     &rcub;;
 </verb></tscreen>
 
+<sect2>Intercepting system vectors
+<p>
+It is possible to intercept and hook in the GEOS Kernal using vectors. Here is a little example:
+<tscreen><verb>
+void_func oldVector;
+
+void NewVectorHandler(void) &lcub;
+       // do something and at the end call the old vector routine
+       oldVector();
+&rcub;
+
+void hook_into_system(void) &lcub;
+       oldVector = mouseVector;
+       mouseVector = NewVectorHandler;
+&rcub;
+
+void remove_hook(void) &lcub;
+       mouseVector = oldVector;
+&rcub;
+</verb></tscreen>
+<p>
+In your <tt/main/ function you should call <tt/hook_into_system()/ but <em/after/ all calls to GEOS
+kernal (like <tt/DoMenu/, <tt/DoIcons/, etc.) - right before passing control to the <tt/MainLoop()/.
+Be warned that vectors are most likely to be changed by GEOS kernal also by other functions (like
+<tt/GotoFirstMenu/, <tt/DoDlgBox/ and its derivatives etc.). It depends on what kernal functions
+you use and which vectors you altered. Unfortunately there is no exact list for GEOS 2.0, a complete
+list for GEOS 1.x can be found in A. Boyce's Programmers' Reference Guide mentioned before. Most of
+information contained there should be still valid for GEOS 2.0. When calling a function that restores
+the vector you should add a <tt/hook_into_system()/ call right after it.
+<p>
+It is critical to restore old vector values before exiting the program. If you have more than one
+place where you call <tt/exit()/ then it might be worth to register <tt/remove_hook/ function to
+be called upon exiting with <tt/atexit(&amp;remove_hook);/ call. This way you will ensure that
+such destructor will be always called.
+<p>
+That little example above intercepts <tt/mouseVector/. The <tt/NewVectorHandler/ function will be
+called every time the mouse button changes status. Other important vectors you should know about
+are:
+<itemize>
+       <item><tt/appMain/ - this is called from within <tt/MainLoop/ system loop
+       <item><tt/keyVector/ - called whenever a keypress occurs
+       <item><tt/intTopVector/ - called at the start of IRQ routine
+       <item><tt/intBotVector/ - called at the end of IRQ routine
+</itemize>
+
 </article>