home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-10-25 | 2.0 KB | 91 lines |
- .name
- OFL
- .type
- Library Tool
- .aminet-dir
- dev/misc
- .short
- Describes functions in libraries
- .description
- By selecting the library you wish to consult, you will be presented with a
- list of its functions. Just clic on the one you're interested in, and a
- requester containing the following information will appear:
-
- - the function's name
- - a short summary of what it does
- - its offset
- - the structures and registers it uses
-
- Naturally enough, the information provided is not comprehensive; OFL is no
- replacement to the autodocs. Its main aim is to provide you with the
- minimum information needed and spare you hours of tedious research through
- tons of documentation. For more details, you will have to go through the
- autodocs and/or the 'Rom Kernal Reference Manuals'.
- .version
- 1.2
- .date
- 1995.03.28
- .author
- Christophe Beaumont
- .requirements
- OS2.04+
- .distribution
- Copyrighted but Freely Redistributable
- .address
- 16, rue de l'Orme
- 67400 Illkirch-Graffenstaden
- France
- .docs
- OFL_Docs/OFL_English.Doc
- OFL_Docs/OFL_English.guide
- OFL_Docs/OFL_Francais.Doc
- OFL_Docs/OFL_Francais.guide
- .described-by
- Richard Fish (rjf@amigalib.com)
- .submittal
- Submitted on disk directly by the author.
- .execute
- set choice `RequestChoice "OFL" "Please select an option" "View Doc" "View Guide" "Run Program" "Cancel"`
-
- if $choice EQ "0"
- quit 5
- endif
-
- if $choice EQ "1"
- set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
- if $choice2 EQ "0"
- quit 0
- endif
-
- cd OFL_Docs
- if $choice2 EQ "1"
- MetaTool OFL_English.Doc TEXT
- endif
-
- if $choice2 EQ "2"
- MetaTool OFL_Français.Doc TEXT
- endif
- cd /
- endif
-
- if $choice EQ "2"
- set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
- if $choice2 EQ "0"
- quit 0
- endif
-
- cd OFL_Docs
- if $choice2 EQ "1"
- MetaTool OFL_English.guide GUIDE
- endif
-
- if $choice2 EQ "2"
- MetaTool OFL_Français.guide GUIDE
- endif
- cd /
- endif
-
- if $choice EQ "3"
- "OFL 1.2"
- endif
-