this is called by R_init_Rcpp that is in Module.cpp
| 76 | |
| 77 | // this is called by R_init_Rcpp that is in Module.cpp |
| 78 | void init_Rcpp_routines(DllInfo *info){ |
| 79 | // Register routines, allocate resources. |
| 80 | R_registerRoutines(info, |
| 81 | NULL, // .C |
| 82 | callEntries, // .Call |
| 83 | NULL, // .Fortran |
| 84 | extEntries // .External |
| 85 | ); |
| 86 | } |
| 87 | |
| 88 | void registerFunctions(){ |
| 89 | using namespace Rcpp; |