https://github.com/cran/lattice
Raw File
Tip revision: 764a86fd92c1f16dc3ddd0dd2c0e12d72f3c20ed authored by Deepayan Sarkar on 19 September 2006, 00:00:00 UTC
version 0.14-5
Tip revision: 764a86f
init.c

#include <R.h>
#include <Rinternals.h>
#include <R_ext/Rdynload.h>

#include "threeDplot.h"

static R_CallMethodDef CallEntries[] = {
    {"wireframePanelCalculations", (DL_FUNC) &wireframePanelCalculations, 12},
    {NULL, NULL, 0}
};

void R_init_lattice(DllInfo *dll)
{
    R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
    R_useDynamicSymbols(dll, FALSE);
}

back to top