mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
accidentally removed PsycElem
This commit is contained in:
parent
d5768a3040
commit
2486b4a82a
1 changed files with 8 additions and 3 deletions
|
@ -61,6 +61,14 @@ pub enum PsycPacketId {
|
||||||
PSYC_PACKET_ID_ELEMS = 5,
|
PSYC_PACKET_ID_ELEMS = 5,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
pub struct PsycElem {
|
||||||
|
pub elem_type: PsycString,
|
||||||
|
pub value: PsycString,
|
||||||
|
pub length: usize,
|
||||||
|
pub flag: PsycElemFlag
|
||||||
|
}
|
||||||
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub struct RawPsycList {
|
pub struct RawPsycList {
|
||||||
list_type: PsycString,
|
list_type: PsycString,
|
||||||
|
@ -108,6 +116,3 @@ pub enum PsycRenderRC {
|
||||||
/// Packet is rendered successfully in the buffer.
|
/// Packet is rendered successfully in the buffer.
|
||||||
PSYC_RENDER_SUCCESS = 0,
|
PSYC_RENDER_SUCCESS = 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue