getLoadedDLLs              package:base              R Documentation

_G_e_t _D_L_L_s _L_o_a_d_e_d _i_n _C_u_r_r_e_n_t _S_e_s_s_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     This function provides a way to get a list of all the Dynamically
     Loadable Libraries (DLLs) that are currently loaded in the current
     R session.

_U_s_a_g_e:

     getLoadedDLLs()

_D_e_t_a_i_l_s:

     This queries the internal table that manages the DLLs.

_V_a_l_u_e:

     An object of class '"DLLInfoList"' which is a list with an element
     corresponding to each DLL that is currently loaded in the session.
      Each element is an object of class '"DLLInfo"' which has the
     following entries.

    name: the abbreviated name.

    path: the fully qualified name of the file which was dynamically
          loaded.

dynamicLookup: a logical value indicating whether R uses only the
          registration information to resolve symbols or whether it
          searches the entire symbol table of the DLL.

  handle: a reference to the C-level data structure that provides
          access to the contents of the DLL. This is an object of class
          '"DLLHandle'". 

_N_o_t_e:

     We are starting to use the 'handle' elements in the DLL object to
     resolve symbols more directly in R.

_A_u_t_h_o_r(_s):

     Duncan Temple Lang duncan@wald.ucdavis.edu.

_S_e_e _A_l_s_o:

     'getDLLRegisteredRoutines', 'getNativeSymbolInfo'

_E_x_a_m_p_l_e_s:

     getLoadedDLLs()

