mirror of
https://github.com/safing/portbase
synced 2026-04-28 20:00:33 +00:00
Add GenCode support to dsd
This commit is contained in:
parent
0de310503a
commit
3b68c8ea4c
5 changed files with 1037 additions and 43 deletions
23
formats/dsd/tests.gencode
Normal file
23
formats/dsd/tests.gencode
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
struct SimpleTestStruct {
|
||||
S string
|
||||
B byte
|
||||
}
|
||||
|
||||
struct GenCodeTestStructure {
|
||||
I8 int8
|
||||
I16 int16
|
||||
I32 int32
|
||||
I64 int64
|
||||
UI8 uint8
|
||||
UI16 uint16
|
||||
UI32 uint32
|
||||
UI64 uint64
|
||||
S string
|
||||
Sp *string
|
||||
Sa []string
|
||||
Sap *[]string
|
||||
B byte
|
||||
Bp *byte
|
||||
Ba []byte
|
||||
Bap *[]byte
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue