1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 14:32:58 +02:00

Update Nyquist to v3.09.

This commit is contained in:
Leland Lucius
2015-04-07 22:10:17 -05:00
parent f88b27e6d8
commit 9fb0ce5b82
358 changed files with 26327 additions and 7043 deletions

View File

@@ -56,11 +56,11 @@ struct xtype_desc_struct desc_table[NTYPES];
/**/
xtype_desc create_desc(
char *type_name, /* the type string name */
void (*fm)(), /* method to free instances of the type */
void (*pm)(), /* method to print instances of the type */
void (*sm)(), /* method to save instances of the type */
unsigned char * (*rm)(), /* method to restore instances of the type */
void (*mm)()) /* method to mark instances of the type for GC */
void (*fm)(void*), /* method to free instances of the type */
void (*pm)(void*, void*), /* method to print instances of the type */
void (*sm)(FILE*, void*), /* method to save instances of the type */
unsigned char * (*rm)(FILE*), /* method to restore instances of the type */
void (*mm)(void*)) /* method to mark instances of the type for GC */
{
xtype_desc td; /* the new type descriptor */
if (extindex >= NTYPES) xlfail("insufficient type desc space");