[Dda-cvs] modec/include couplepoint.h,1.1,1.2 object.h,1.8,1.9
Status: Beta
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2008-04-10 02:30:01
|
Update of /cvsroot/dda/modec/include In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv28199/include Modified Files: couplepoint.h object.h Log Message: Fresh build with vs2005. Index: couplepoint.h =================================================================== RCS file: /cvsroot/dda/modec/include/couplepoint.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** couplepoint.h 1 Jul 2006 01:23:34 -0000 1.1 --- couplepoint.h 10 Apr 2008 02:29:54 -0000 1.2 *************** *** 15,19 **** typedef struct _couplepoint Couplepoint; ! void couplepoint_update (Couplepoint * cpoint, --- 15,19 ---- typedef struct _couplepoint Couplepoint; ! Couplepoint * couplepoint_new(void); void couplepoint_update (Couplepoint * cpoint, Index: object.h =================================================================== RCS file: /cvsroot/dda/modec/include/object.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** object.h 11 Aug 2004 00:34:03 -0000 1.8 --- object.h 10 Apr 2008 02:29:54 -0000 1.9 *************** *** 23,27 **** typedef int (*ReadFunc) (void* stream, char* buf, ! size_t len); #ifndef MODEC_PRINTFUNC --- 23,27 ---- typedef int (*ReadFunc) (void* stream, char* buf, ! size_t len); #ifndef MODEC_PRINTFUNC *************** *** 32,41 **** #endif ! #ifndef MODEC_SCANFUNC ! typedef int (*ScanFunc) (void* stream, ! const char * format, ! ...); ! #define MODEC_SCANFUNC ! #endif #ifndef MODEC_WRITEFUNC --- 32,41 ---- #endif ! #ifndef MODEC_SCANFUNC ! typedef int (*ScanFunc) (void* stream, ! const char * format, ! ...); ! #define MODEC_SCANFUNC ! #endif #ifndef MODEC_WRITEFUNC *************** *** 71,79 **** #endif ! #ifndef MODEC_ALLOCATOR ! #define MODEC_ALLOCATOR ! typedef void * (*Allocator) (void); ! #endif ! /** --- 71,79 ---- #endif ! #ifndef MODEC_ALLOCATOR ! #define MODEC_ALLOCATOR ! typedef void * (*Allocator) (void); ! #endif ! /** *************** *** 86,96 **** Printer print; DeleteFunc delete_; ! CloneFunc clone; Allocator allocate; ! void * owner; ! /* Use this to pass around random junk like ! * a character string where print functions ! * are printing from. ! */ void * userdata; const char * type; --- 86,96 ---- Printer print; DeleteFunc delete_; ! CloneFunc clone; Allocator allocate; ! void * owner; ! /* Use this to pass around random junk like ! * a character string where print functions ! * are printing from. ! */ void * userdata; const char * type; *************** *** 123,132 **** const char * type); ! void object_set_printer (Object * o, ! Printer print_func); ! ! void object_set_userdata (Object * o, ! void * userdata); ! void * object_get_userdata (Object * o); --- 123,132 ---- const char * type); ! void object_set_printer (Object * o, ! Printer print_func); ! ! void object_set_userdata (Object * o, ! void * userdata); ! void * object_get_userdata (Object * o); |