1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

accidentally removed PsycElem

This commit is contained in:
lurchi 2016-09-04 15:04:07 +02:00
parent d5768a3040
commit 2486b4a82a

View file

@ -61,6 +61,14 @@ pub enum PsycPacketId {
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)]
pub struct RawPsycList {
list_type: PsycString,
@ -108,6 +116,3 @@ pub enum PsycRenderRC {
/// Packet is rendered successfully in the buffer.
PSYC_RENDER_SUCCESS = 0,
}