Skip to content
Prev 1719 / 398506 Next

R.dll

On Wed, 9 Dec 1998, Yoon, Hoon (CICG - NY Program Trading) wrote:

            
Are there any docs on anything in R?  I think it is a question of reading
the source code, but everything you are likely to need is in
src/gnuwin32/system.c
It may be possible, but I would not do this. For most purposes of R
packages it is just another DLL, and who cares what compiler was used? And
for some (such as calls to unif_rand) you really don't want to know how
each compiler does it.  (Unlike Unix systems with ELF, the format of many
parts of Windows DLLs is just not defined. This includes what fo do with
return values and how small structures are passed, at least.)  From the
point of view of using the DLL from a GUI application, all the interface
is in system.c, but R_Read/WriteConsole is about all you need to cope
with. 
 

Brian