The R Project SVN R

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27445 ripley 1
\name{DLL.version}
2
\alias{DLL.version}
3
\title{DLL Version Information}
4
\description{
5
  Return the version of the package and the version of \R used to
6
  build the DLL, if available (usually only since \R version 1.2.0).
7
}
8
\usage{
9
DLL.version(path)
10
}
11
\arguments{
12
  \item{path}{character vector of length one giving the complete path to
13
    the DLL.}
14
}
15
\value{
16
  If the DLL does not exist, \code{NULL}.
17
 
18
  A character vector of two, giving the DLL version and the version of
19
  \R used to build the DLL.  If the information is not available, the
20
  corresponding string is empty.
21
}
22
\examples{
23
DLL.version(file.path(R.home(), "bin/R.dll"))
27461 ripley 24
DLL.version(file.path(R.home(), "library/stats/libs/stats.dll"))
27445 ripley 25
}
26
\keyword{utilities}