home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rx_net.zip / INTERF.ACE next >
Text File  |  1993-09-08  |  5KB  |  182 lines

  1.   RX_NET
  2.  
  3.   Functions available :
  4.  
  5.    - RXNet_LoadAll
  6.    - RXNet_DropAll
  7.    - RX_GetDCName
  8.    - RX_GetUsers
  9.    - RX_GetLogonAsn
  10.    - RX_SetLogonAsn
  11.    - RX_GetAliases
  12.    - RX_GetApps
  13.    - RX_GetAppSel
  14.    - RX_SetAppSel
  15.  
  16.  
  17.     RXNet_LoadAll :
  18.     ----------------------------
  19.  
  20.     load all functions available in RX_NET
  21.  
  22.  
  23.     RXNet_DropAll :
  24.     ----------------------------
  25.  
  26.     drop all functions available in RX_NET
  27.  
  28.  
  29.     RX_GetDCName :
  30.     ----------------------------
  31.  
  32.     return the name of the Domain Controller
  33.  
  34.     ARGS :
  35.       -1 name of the domain
  36.          If not supplied or blank use the default domain.
  37.  
  38.  
  39.     RX_GetUsers :
  40.     ----------------------------
  41.  
  42.     Query the users defined
  43.  
  44.     ARGS :
  45.       -1 Stem : following vals will be set
  46.                 STEM.0 cnt User ID's
  47.                 STEM.i User ID
  48.  
  49.       -2 Domain Controller, if empty or not supplied use DC of default domain
  50.  
  51.  
  52.     RX_GetLogonAsn :
  53.     ----------------------------
  54.  
  55.     Query the logon assignments of a user
  56.  
  57.     ARGS :
  58.       -1 User
  59.  
  60.       -2 Stem : on return following vals will be set
  61.                 STEM.0 cnt of logon assignments
  62.                 STEM.i a blank separated list formated as
  63.                           ALIAS TYPE DEVICE
  64.                        where
  65.                           ALIAS  is the ALIAS
  66.                           TYPE   is one of FILE PRINTER SERIAL UNKNOWN
  67.                           DEVICE is one of A...Z,*,LPT1...LPT9,COM1...COM9
  68.                                  DEVICE maybe left empty
  69.  
  70.       -3 Domain Controller, if empty or not supplied use DC of default domain
  71.  
  72.  
  73.     RX_SetLogonAsn :
  74.     ----------------------------
  75.  
  76.     Set the logon assignments of a user
  77.  
  78.     ARGS :
  79.       -1 User
  80.  
  81.       -2 Stem : following vals will be set
  82.                 STEM.0 cnt of logon assignments
  83.                 STEM.i a blank separated list formated as
  84.                           ALIAS TYPE DEVICE
  85.                        where
  86.                           ALIAS  is the ALIAS
  87.                           TYPE   is one of FILE PRINTER SERIAL UNKNOWN
  88.                           DEVICE is one of A...Z,*,LPT1...LPT9,COM1...COM9
  89.                                  DEVICE maybe left empty
  90.        Example : LOGONASN.0 = 1
  91.                  LOGONASN.1 = "TEMPDISK FILE X:"
  92.  
  93.       -3 Domain Controller, if empty or not supplied use DC of default domain
  94.  
  95.  
  96.     RX_GetAliases :
  97.     ----------------------------
  98.  
  99.     Query the aliases in a domain
  100.  
  101.     ARGS :
  102.       -1 Stem : on return following vals will be set
  103.                 STEM.0 cnt of logon assignments
  104.                 STEM.i a blank separated list formated as
  105.                           ALIAS TYPE
  106.                        where
  107.                           ALIAS  is the ALIAS
  108.                           TYPE   is one of FILE
  109.                                            PRINTER
  110.                                            SERIAL
  111.                                            UNKNOWN
  112.  
  113.       -2 Domain Controller, if empty or not supplied use DC of default domain
  114.  
  115.  
  116.     RX_GetApps :
  117.     ----------------------------
  118.  
  119.     Query the applications a domain (of a  user)
  120.  
  121.     ARGS :
  122.       -1 Stem : on return following vals will be set
  123.                 STEM.0 cnt of logon assignments
  124.                 STEM.i a blank separated list formated as
  125.                           APPLICATION TYPE
  126.                        where
  127.                           APPLICATION is the defined name for the application
  128.                           TYPE   is one of PUBLIC_OS2
  129.                                            PRIVATE_OS2
  130.                                            PUBLIC_DOS
  131.                                            UNKNOWN
  132.  
  133.       -2 Domain Controller, if empty or not supplied use DC of default domain
  134.  
  135.       -3 Userid, if empty or not supplied only public applications will be returned
  136.  
  137.  
  138.     RX_GetAppSel :
  139.     ----------------------------
  140.  
  141.     Query the application selector of a user
  142.  
  143.     ARGS :
  144.       -1 User
  145.  
  146.       -2 Stem : on return following vals will be set
  147.                 STEM.0 cnt of applications
  148.                 STEM.i a blank separated list formated as
  149.                           APP TYPE
  150.                        where
  151.                           APP    is the application name
  152.                           TYPE   is one of - PUBLIC_OS2
  153.                                            - PRIVATE_OS2
  154.                                            - PUBLIC_DOS
  155.                                            - UNKOWN
  156.  
  157.       -3 Domain Controller, if empty or not supplied use DC of default domain
  158.  
  159.  
  160.     RX_SetAppSel :
  161.     ----------------------------
  162.  
  163.     Set the logon assignments of a user
  164.  
  165.     ARGS :
  166.       -1 User
  167.  
  168.       -2 Stem : following vals will be set
  169.                 STEM.0 cnt of logon assignments
  170.                 STEM.i a blank separated list formated as
  171.                           APP TYPE
  172.                        where
  173.                           APP    is the application name
  174.                           TYPE   is one of - PUBLIC_OS2
  175.                                            - PRIVATE_OS2
  176.                                            - PUBLIC_DOS
  177.        Example : APPSEL.0 = 1
  178.                  APPSEL.1 = "LOTUS PUBLIC_OS2"
  179.  
  180.       -3 Domain Controller, if empty or not supplied use DC of default domain
  181.  
  182.