2007-05-14 09:55:24 +00:00
|
|
|
autogen definitions utils.tpl;
|
|
|
|
|
2004-09-30 11:44:04 +00:00
|
|
|
float_type = {
|
|
|
|
name = float ;
|
|
|
|
};
|
|
|
|
|
|
|
|
float_type = {
|
|
|
|
name = double ;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*----------------------------------*/
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
io_type = {
|
2007-05-14 09:55:24 +00:00
|
|
|
io_element = short ;
|
2007-12-14 09:41:33 +00:00
|
|
|
format_str = "\"% d\"" ;
|
2007-05-14 09:55:24 +00:00
|
|
|
};
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
io_type = {
|
2007-05-14 09:55:24 +00:00
|
|
|
io_element = int ;
|
2007-12-14 09:41:33 +00:00
|
|
|
format_str = "\"% d\"" ;
|
2007-05-14 09:55:24 +00:00
|
|
|
};
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
io_type = {
|
2007-05-14 09:55:24 +00:00
|
|
|
io_element = float ;
|
2007-12-14 09:41:33 +00:00
|
|
|
format_str = "\"% g\"" ;
|
2007-05-14 09:55:24 +00:00
|
|
|
};
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
io_type = {
|
2007-05-14 09:55:24 +00:00
|
|
|
io_element = double ;
|
2007-12-14 09:41:33 +00:00
|
|
|
format_str = "\"% g\"" ;
|
2007-05-14 09:55:24 +00:00
|
|
|
};
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
read_op = {
|
2007-05-14 09:55:24 +00:00
|
|
|
op_element = read ;
|
|
|
|
count_name = items ;
|
|
|
|
};
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
read_op = {
|
2007-05-14 09:55:24 +00:00
|
|
|
op_element = readf ;
|
|
|
|
count_name = frames ;
|
|
|
|
};
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
write_op = {
|
2007-05-14 09:55:24 +00:00
|
|
|
op_element = write ;
|
|
|
|
count_name = items ;
|
|
|
|
};
|
|
|
|
|
2005-09-22 10:52:36 +00:00
|
|
|
write_op = {
|
2007-05-14 09:55:24 +00:00
|
|
|
op_element = writef ;
|
|
|
|
count_name = frames ;
|
|
|
|
};
|
|
|
|
|