| Line 1... |
Line 1... |
| 1 |
% File src/library/base/man/dynload.Rd
|
1 |
% File src/library/base/man/dynload.Rd
|
| 2 |
% Part of the R package, http://www.R-project.org
|
2 |
% Part of the R package, http://www.R-project.org
|
| 3 |
% Copyright 1995-2012 R Core Team
|
3 |
% Copyright 1995-2013 R Core Team
|
| 4 |
% Distributed under GPL 2 or later
|
4 |
% Distributed under GPL 2 or later
|
| 5 |
|
5 |
|
| 6 |
\name{dyn.load}
|
6 |
\name{dyn.load}
|
| 7 |
\alias{dyn.load}
|
7 |
\alias{dyn.load}
|
| 8 |
\alias{dyn.unload}
|
8 |
\alias{dyn.unload}
|
| Line 57... |
Line 57... |
| 57 |
\code{\link{.Fortran}} and \code{\link{.External}} functions.}
|
57 |
\code{\link{.Fortran}} and \code{\link{.External}} functions.}
|
| 58 |
\item{type}{The type of symbol to look for: can be any (\code{""}, the
|
58 |
\item{type}{The type of symbol to look for: can be any (\code{""}, the
|
| 59 |
default), \code{"Fortran"}, \code{"Call"} or \code{"External"}.}
|
59 |
default), \code{"Fortran"}, \code{"Call"} or \code{"External"}.}
|
| 60 |
}
|
60 |
}
|
| 61 |
\details{
|
61 |
\details{
|
| - |
|
62 |
|
| 62 |
The objects \code{dyn.load} loads are called \sQuote{dynamically
|
63 |
The objects \code{dyn.load} loads are called \sQuote{dynamically
|
| 63 |
loadable libraries} (abbreviated to \sQuote{DLL}) on all platforms
|
64 |
loadable libraries} (abbreviated to \sQuote{DLL}) on all platforms
|
| 64 |
except Mac OS X, which unfortunately uses the term for a different
|
65 |
except OS X, which uses the term for a different sort
|
| 65 |
sort of sobject. On Unix-alikes they are also called \sQuote{dynamic
|
66 |
of object. On Unix-alikes they are also called \sQuote{dynamic
|
| 66 |
shared objects} (\sQuote{DSO}), or \sQuote{shared objects} for
|
67 |
shared objects} (\sQuote{DSO}), or \sQuote{shared objects} for
|
| 67 |
short. (The POSIX standards use \sQuote{executable object file}, but
|
68 |
short. (The POSIX standards use \sQuote{executable object file},
|
| 68 |
no one else does.)
|
69 |
but no one else does.)
|
| 69 |
|
70 |
|
| 70 |
See \sQuote{See Also} and the \sQuote{Writing R Extensions} and
|
71 |
See \sQuote{See Also} and the \sQuote{Writing R Extensions} and
|
| 71 |
\sQuote{R Installation and Administration} manuals for how to create
|
72 |
\sQuote{R Installation and Administration} manuals for how to create
|
| 72 |
and install a suitable DLL.
|
73 |
and install a suitable DLL.
|
| 73 |
|
74 |
|