home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / basic / eventshell / Docs / OS < prev    next >
Encoding:
Text File  |  1996-04-11  |  1.3 KB  |  59 lines

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