https://github.com/cran/lattice
Raw File
Tip revision: 32ae87cf116c7b97111b2708aaa0efde9a49da59 authored by Deepayan Sarkar on 03 September 2008, 00:00:00 UTC
version 0.17-14
Tip revision: 32ae87c
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