Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Function ¶
type Function struct {
CName string // e.g. "sqlite3_open_v2"
GoName string // e.g. "Sqlite3OpenV2"
ReturnCType string // e.g. "int"
ReturnGoType string // e.g. "int32"
Params []Param
IsVariadic bool
}
Function represents a parsed SQLITE_API function declaration.
type Group ¶
type Group struct {
Name string // Go interface name: "Lifecycle", "Column"
File string // output filename stem: "lifecycle", "column"
Functions []Function // functions belonging to this group
}
Group holds parsed functions assigned to a specific outbound port group.
Click to show internal directories.
Click to hide internal directories.