home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / misc / ofl / product-info < prev   
Encoding:
Fred Fish's Product-Info  |  1995-10-25  |  2.0 KB  |  91 lines

  1. .name
  2. OFL
  3. .type
  4. Library Tool
  5. .aminet-dir
  6. dev/misc
  7. .short
  8. Describes functions in libraries
  9. .description
  10. By  selecting the library you wish to consult, you will be presented with a
  11. list  of  its  functions.  Just clic on the one you're interested in, and a
  12. requester containing the following information will appear:
  13.  
  14.  - the function's name
  15.  - a short summary of what it does
  16.  - its offset
  17.  - the structures and registers it uses
  18.  
  19. Naturally enough, the information provided is not comprehensive; OFL is no
  20. replacement  to  the  autodocs.   Its  main  aim is to provide you with the
  21. minimum  information needed and spare you hours of tedious research through
  22. tons  of  documentation.  For more details, you will have to go through the
  23. autodocs and/or the 'Rom Kernal Reference Manuals'.
  24. .version
  25. 1.2
  26. .date
  27. 1995.03.28
  28. .author
  29. Christophe Beaumont
  30. .requirements
  31. OS2.04+
  32. .distribution
  33. Copyrighted but Freely Redistributable
  34. .address
  35. 16, rue de l'Orme
  36. 67400 Illkirch-Graffenstaden
  37. France
  38. .docs
  39. OFL_Docs/OFL_English.Doc
  40. OFL_Docs/OFL_English.guide
  41. OFL_Docs/OFL_Francais.Doc
  42. OFL_Docs/OFL_Francais.guide
  43. .described-by
  44. Richard Fish (rjf@amigalib.com)
  45. .submittal
  46. Submitted on disk directly by the author.
  47. .execute
  48. set choice `RequestChoice "OFL" "Please select an option" "View Doc" "View Guide" "Run Program" "Cancel"`
  49.  
  50. if $choice EQ "0"
  51.   quit 5
  52. endif
  53.  
  54. if $choice EQ "1"
  55.   set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
  56.   if $choice2 EQ "0"
  57.     quit 0
  58.   endif
  59.  
  60.   cd OFL_Docs
  61.   if $choice2 EQ "1"
  62.     MetaTool OFL_English.Doc TEXT
  63.   endif
  64.  
  65.   if $choice2 EQ "2"
  66.     MetaTool OFL_Français.Doc TEXT
  67.   endif
  68.   cd /
  69. endif
  70.  
  71. if $choice EQ "2"
  72.   set choice2 `RequestChoice "Language Selection" "Please select a language" "English" "Français" "Cancel"`
  73.   if $choice2 EQ "0"
  74.     quit 0
  75.   endif
  76.  
  77.   cd OFL_Docs
  78.   if $choice2 EQ "1"
  79.     MetaTool OFL_English.guide GUIDE
  80.   endif
  81.  
  82.   if $choice2 EQ "2"
  83.     MetaTool OFL_Français.guide GUIDE
  84.   endif
  85.   cd /
  86. endif
  87.  
  88. if $choice EQ "3"
  89.   "OFL 1.2"
  90. endif
  91.