search for: null_hold

Displaying 1 result from an estimated 1 matches for "null_hold".

2005 Apr 02
2
Building new graphic device drivers with g++
...>left; *right = dev->right; *bottom = dev->bottom; *top = dev->top; } static double NULL_StrWidth(char *str, R_GE_gcontext *gc, NewDevDesc *dev) { return 0.0; } static void NULL_dot(NewDevDesc *dev) { } static void NULL_Hold(NewDevDesc *dev) { } static Rboolean nullDeviceDriver(NewDevDesc *dev) { dev->deviceSpecific = NULL; /* * Device functions */ dev->open = (Rboolean (*)())NULL_Open; dev->close = (void (*)())NULL_Close; dev->activate = (void (*)())NULL_Activate; dev-&...