1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-30 09:44:20 +02:00

Move library tree where it belongs

This commit is contained in:
ra
2010-01-24 09:19:39 +00:00
parent e74978ba77
commit 58caf78a86
6020 changed files with 2790154 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
autogen definitions utils.tpl;
float_type = {
name = float ;
};
float_type = {
name = double ;
};
/*----------------------------------*/
io_type = {
io_element = short ;
format_str = "\"% d\"" ;
};
io_type = {
io_element = int ;
format_str = "\"% d\"" ;
};
io_type = {
io_element = float ;
format_str = "\"% g\"" ;
};
io_type = {
io_element = double ;
format_str = "\"% g\"" ;
};
read_op = {
op_element = read ;
count_name = items ;
};
read_op = {
op_element = readf ;
count_name = frames ;
};
write_op = {
op_element = write ;
count_name = items ;
};
write_op = {
op_element = writef ;
count_name = frames ;
};