So far the only way I found is by making the shared object for a function that is written in e.g. myfile.c:
R CMD SHLIB myfile.c
and then testing in RGui using a script.
I want to code on Windows and i would like an easier way for compiling c code that uses R api calls, preferably using an IDE like Netbeans or Visual Studio. Is this possible ?
EDIT
Install Netbeans C\C++
Install R
Install RTools - contains C\C++ compiler for Netbeans
copy include files from R\R-2.12.2\include folder to RTools\MinGW\include folder
copy dll files from R\R-2.12.2\bin\i386 to Rtools\MinGW\lib
Make Netbeans project C\C++ - will require to select compiler tools from RTools\MinGW folder
copy required dll files from R\R-2.12.2\bin\i386 to execution folder of Netbeans Project