OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
sciSerialize.h
1
3#ifndef __SCISERIALIZE_H__
4#define __SCISERIALIZE_H__
5
6
9#include "sciReport.h"
10
11#ifdef __cplusplus
12extern "C" {
13#endif // __cplusplus
14
15
20gsi_u8* sciSerializeInt8 (gsi_u8* theCursor, gsi_i8 theValue);
21
22gsi_u8* sciSerializeInt16 (gsi_u8* theCursor, gsi_i16 theValue);
23
24gsi_u8* sciSerializeInt32 (gsi_u8* theCursor, gsi_i32 theValue);
25
26gsi_u8* sciSerializeInt64 (gsi_u8* theCursor, gsi_i64 theValue);
27
28gsi_u8* sciSerializeFloat (gsi_u8* theCursor, float theValue);
29
30gsi_u8* sciSerializeKey (gsi_u8* theCursor, gsi_u16 theKey);
31
32gsi_u8* sciSerializeDataLength(gsi_u8* theCursor, gsi_u32 theDataLength);
33
34gsi_u8* sciSerializeGUID (gsi_u8* theCursor, const gsi_u8 theGUID[SC_CONNECTION_GUID_SIZE]);
35
38#ifdef __cplusplus
39} // extern "C"
40#endif // __cplusplus
41
42
45#endif // __SCSERIALIZE_H__