home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilsd / evntshell / Docs / OS < prev    next >
Encoding:
Text File  |  1995-10-03  |  1.5 KB  |  71 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.          str  os variable name
  35.  
  36.        <=
  37.          bool TRUE or FALSE
  38.  
  39. --------------------------------------------------------
  40.  
  41. FNshell_OSVarGetVal()
  42. Params =>
  43.          str  os variable name
  44.          bool expand flag
  45.  
  46.        <=
  47.          str  value of variable
  48.  
  49. --------------------------------------------------------
  50.  
  51. FNshell_OSReadCommandArg()
  52. Params =>
  53.          int  option (must be 0 or 1)
  54.  
  55.        <=
  56.          str  command string
  57.  
  58. --------------------------------------------------------
  59.  
  60. FNshell_GetCmdLineArgs
  61. Params =>
  62.          None
  63.  
  64. Returns the command line used to start the program
  65. excluding the program name itself. If an alias has
  66. been set up for the filetype with  Set
  67. Alias$@RunType_xxx then this call will return the
  68. name of the file that was double clicked on to start
  69. the application.
  70.  
  71. --------------------------------------------------------