Added modb_use to initR

This commit is contained in:
2020-10-05 17:40:45 +01:00
parent 6e50ca145b
commit f9e4582caa

View File

@@ -11,6 +11,8 @@ static const R_CallMethodDef callMethods[] = {
{"modb_exists", (DL_FUNC) &modb_exists, 2}, {"modb_exists", (DL_FUNC) &modb_exists, 2},
{"modb_create", (DL_FUNC) &modb_create, 3}, {"modb_create", (DL_FUNC) &modb_create, 3},
{"modb_destroy", (DL_FUNC) &modb_destroy, 2}, {"modb_destroy", (DL_FUNC) &modb_destroy, 2},
{"modb_use", (DL_FUNC) &modb_use, 2},
{NULL, NULL, 0} {NULL, NULL, 0}
}; };