https://github.com/cran/lattice
Raw File
Tip revision: 700fca386301fe0ad149c5607eb616200580b4dc authored by Deepayan Sarkar on 02 April 2011, 00:00:00 UTC
version 0.19-23
Tip revision: 700fca3
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