1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 06:22: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

@@ -156,11 +156,11 @@
typedef struct xtype_desc_struct {
char *type_name;
struct node *type_symbol;
void (*free_meth)();
void (*print_meth)();
void (*save_meth)();
unsigned char * (*restore_meth)();
void (*mark_meth)();
void (*free_meth)(void*);
void (*print_meth)(void*, void*);
void (*save_meth)(FILE*, void*);
unsigned char * (*restore_meth)(FILE*);
void (*mark_meth)(void*);
} *xtype_desc;
/* node structure */
@@ -211,5 +211,9 @@ typedef struct segment {
struct node sg_nodes[1];
} SEGMENT;
extern xtype_desc create_desc(); /* initialize a type descriptor */
/* initialize a type descriptor */
extern xtype_desc create_desc(char *type_name, void (*fm)(void*),
void (*pm)(void*, void*),
void (*sm)(FILE*, void*),
unsigned char * (*rm)(FILE*),
void (*mm)(void*));