home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / program / d / eventshell / Docs / OS < prev    next >
Encoding:
Text File  |  1993-11-13  |  1.6 KB  |  74 lines

  1. --------------------------------------------------------
  2.  
  3. FNshell_OSCheckModuleVersion()
  4. Params =>
  5.          str  module name
  6.          real version nr required
  7.  
  8.        <=
  9.          bool TRUE or FALSE
  10.  
  11. Use this routine to check whether a
  12. certain version (or later) of a specific
  13. module is installed.
  14.  
  15. --------------------------------------------------------
  16.  
  17. FNshell_OSCheckVersion()
  18. Params =>
  19.          real version nr required
  20.  
  21.        <=
  22.          bool TRUE or FALSE
  23.  
  24. Use this routine to check whether RISC
  25. OS 3 is installed for example. The
  26. routine returns FALSE if the OS version
  27. requested (or a later version) is not
  28. found.
  29.  
  30. --------------------------------------------------------
  31.  
  32. FNshell_OSVarExists()
  33. Params =>
  34.          int  workspace buffer
  35.          str  os variable name
  36.  
  37.        <=
  38.          bool TRUE or FALSE
  39.  
  40. --------------------------------------------------------
  41.  
  42. FNshell_OSVarGetVal()
  43. Params =>
  44.          int  workspace buffer
  45.          int  size of buffer
  46.          str  os variable name
  47.          bool expand flag
  48.  
  49.        <=
  50.          str  value of variable
  51.  
  52. --------------------------------------------------------
  53.  
  54. FNshell_OSReadCommandArg()
  55. Params =>
  56.          int  option (must be 0 or 1)
  57.  
  58.        <=
  59.          str  command string
  60.  
  61. --------------------------------------------------------
  62.  
  63. FNshell_GetCmdLineArgs
  64. Params =>
  65.          None
  66.  
  67. Returns the command line used to start the program
  68. excluding the program name itself. If an alias has
  69. been set up for the filetype with  Set
  70. Alias$@RunType_xxx then this call will return the
  71. name of the file that was double clicked on to start
  72. the application.
  73.  
  74. --------------------------------------------------------