[R] R for Windows: Is there a function/package that enables Win32 API Calls?

Duncan Murdoch murdoch.duncan at gmail.com
Mon Jan 16 22:30:19 CET 2012


On 12-01-16 2:45 PM, Ajay Askoolum wrote:
> I am looking for a means to call Win32 API calls from R for Windows. Is that possible?

Just write the call in C, and call your C code from R, using .C() or 
.Call() (depending on what you need to pass to it).  Generally .C() is 
easier, but .Call() is faster and more flexible.

Duncan Murdoch



More information about the R-help mailing list