2006-12-20 14:08:07 -05:00
|
|
|
autogen definitions utils.tpl;
|
|
|
|
|
|
|
|
float_type = {
|
|
|
|
name = float ;
|
|
|
|
};
|
|
|
|
|
|
|
|
float_type = {
|
|
|
|
name = double ;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*----------------------------------*/
|
|
|
|
|
|
|
|
io_type = {
|
|
|
|
io_element = short ;
|
2009-05-21 17:09:30 -04:00
|
|
|
format_str = "\"% d\"" ;
|
2006-12-20 14:08:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
io_type = {
|
|
|
|
io_element = int ;
|
2009-05-21 17:09:30 -04:00
|
|
|
format_str = "\"% d\"" ;
|
2006-12-20 14:08:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
io_type = {
|
|
|
|
io_element = float ;
|
2009-05-21 17:09:30 -04:00
|
|
|
format_str = "\"% g\"" ;
|
2006-12-20 14:08:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
io_type = {
|
|
|
|
io_element = double ;
|
2009-05-21 17:09:30 -04:00
|
|
|
format_str = "\"% g\"" ;
|
2006-12-20 14:08:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ;
|
|
|
|
};
|
|
|
|
|