#include #include #include // for NULL #include /* FIXME: Check these declarations against the C/Fortran source code. */ /* .Call calls */ extern SEXP cve_simple(SEXP X, SEXP Y, SEXP k, SEXP h, SEXP tau, SEXP tol, SEXP epochs, SEXP attempts, SEXP logger, SEXP loggerEnv); static const R_CallMethodDef CallEntries[] = { {"cve_simple", (DL_FUNC) &cve_simple, 10}, {NULL, NULL, 0} }; /* Restrict C entrypoints to registered routines. */ void R_initCVE(DllInfo *dll) { R_registerRoutines(dll, NULL, CallEntries, NULL, NULL); R_useDynamicSymbols(dll, FALSE); }