Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20415
Modified Files: Tag: desiredata desire.c Log Message: added dummy gfxstub_deleteforkey; changed all dummy functions so that they call error("unimplemented")
Index: desire.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v retrieving revision 1.1.2.217.2.181 retrieving revision 1.1.2.217.2.182 diff -C2 -d -r1.1.2.217.2.181 -r1.1.2.217.2.182 *** desire.c 31 Jul 2007 20:07:02 -0000 1.1.2.217.2.181 --- desire.c 1 Aug 2007 05:13:47 -0000 1.1.2.217.2.182 *************** *** 197,201 **** }
! #define DEBUG_QUEUE
static void pd_print (t_pd *self, char *header) { --- 197,201 ---- }
! //#define DEBUG_QUEUE
static void pd_print (t_pd *self, char *header) { *************** *** 311,315 ****
void manager_notice (t_gobj *self_, t_gobj *origin, int argc, t_atom *argv) { - pd_print(origin,"manager_notice"); t_manager *self = (t_manager *)self_; if (!self->dirty->exists(origin)) { --- 311,314 ---- *************** *** 7484,7497 ****
// and just to make some externs happy: ! extern "C" void glist_grab () {} ! extern "C" void glist_xtopixels () {} ! extern "C" void glist_ytopixels () {} ! extern "C" void *glist_findrtext () {return 0;} ! extern "C" void canvas_fixlinesfor () {} ! extern "C" void class_setpropertiesfn () {} ! extern "C" void glist_eraseiofor () {} ! extern "C" void glist_getcanvas () {} ! extern "C" void rtext_gettag () {} ! extern "C" void class_setwidget () {} ! extern "C" void glist_isvisible () {} ! extern "C" void gobj_vis () {} --- 7483,7501 ----
// and just to make some externs happy: ! #define BYE error("%s unimplemented in desiredata!", __PRETTY_FUNCTION__); ! extern "C" { ! void glist_grab () {BYE} ! void glist_xtopixels () {BYE} ! void glist_ytopixels () {BYE} ! void *glist_findrtext () {BYE return 0;} ! void canvas_fixlinesfor () {BYE} ! void class_setpropertiesfn () {BYE} ! void glist_eraseiofor () {BYE} ! void glist_getcanvas () {BYE} ! void rtext_gettag () {BYE} ! void class_setwidget () {BYE} ! void glist_isvisible () {BYE} ! void gobj_vis () {BYE} ! void gfxstub_deleteforkey () {BYE} ! }; !