New to R programming so bear with me.
I am trying to call a function defined in a cpp file inside the RDCOMClient package called R_convertDCOMObjectToR. I did not write that package - it's available here: https://github.com/omegahat/RDCOMClient
I try to call it like this:
.Call("R_convertDCOMObjectToR", varQuestionNames, PACKAGE = "RDCOMClient")
But I get the following error:
Error in .Call("R_convertDCOMObjectToR", varQuestionNames, PACKAGE = "RDCOMClient") : "R_convertDCOMObjectToR" not available for .Call() for package "RDCOMClient"
Is there anyway to make that function visible? should I ask the author to change his library?
Thanks for any pointer!