The type converters for parameter generation.
More...
Go to the source code of this file.
|
enum | type { S1615
, UINT32
, INT32
, U032
} |
|
The type converters for parameter generation.
Definition in file type_writers.h.
◆ type_info
Definition at line 34 of file type_writers.h.
Data Fields |
type |
type_id |
|
uint32_t |
size |
|
type_writer_func_t |
writer |
|
◆ type_writer_func_t
typedef void(* type_writer_func_t) (void *, accum) |
◆ type
◆ write_s1615()
static void write_s1615 |
( |
void * |
address, |
|
|
accum |
value |
|
) |
| |
|
static |
◆ write_uint32()
static void write_uint32 |
( |
void * |
address, |
|
|
accum |
value |
|
) |
| |
|
static |
◆ write_int32()
static void write_int32 |
( |
void * |
address, |
|
|
accum |
value |
|
) |
| |
|
static |
◆ write_u032()
static void write_u032 |
( |
void * |
address, |
|
|
accum |
value |
|
) |
| |
|
static |
◆ get_type_writer()
◆ type_writers
Initial value:= {
{S1615, sizeof(accum), write_s1615},
{UINT32, sizeof(uint32_t), write_uint32},
{INT32, sizeof(int32_t), write_int32},
{U032, sizeof(unsigned long fract), write_u032}
}
Definition at line 60 of file type_writers.h.