The R Project SVN R

Rev

Rev 68948 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68948 Rev 75092
Line 1... Line 1...
1
% File src/library/utils/man/windows/DLL.version.Rd
1
% File src/library/utils/man/DLL.version.Rd
2
% Part of the R package, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2010 R Core Team
3
% Copyright 1995-2018 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{DLL.version}
6
\name{DLL.version}
7
\alias{DLL.version}
7
\alias{DLL.version}
8
\title{DLL Version Information}
8
\title{DLL Version Information on MS Windows}
9
\description{
9
\description{
10
  Return the version of the package and the version of \R used to
10
  On MS Windows only, return the version of the package and the version of \R used to
11
  build the DLL, if available.
11
  build the DLL, if available.
12
}
12
}
13
\usage{
13
\usage{
14
DLL.version(path)
14
DLL.version(path)
15
}
15
}
Line 26... Line 26...
26
}
26
}
27
\note{
27
\note{
28
  This is only available on Windows.
28
  This is only available on Windows.
29
}
29
}
30
\examples{
30
\examples{
-
 
31
if(.Platform$OS.type == "windows") withAutoprint({
31
DLL.version(file.path(R.home("bin"), "R.dll"))
32
  DLL.version(file.path(R.home("bin"), "R.dll"))
32
DLL.version(file.path(R.home(), "library/stats/libs", .Platform$r_arch, "stats.dll"))
33
  DLL.version(file.path(R.home(), "library/stats/libs", .Platform$r_arch, "stats.dll"))
-
 
34
})
33
}
35
}
34
\keyword{utilities}
36
\keyword{utilities}