facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
28 lines
1.0 KiB
C
28 lines
1.0 KiB
C
#ifndef MC__SERIALIZE_H
|
|
#define MC__SERIALIZE_H
|
|
|
|
#include <config.h>
|
|
|
|
#include "lib/global.h"
|
|
#include "lib/mcconfig.h"
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
char *mc_serialize_str (const char prefix, const char *data, GError ** error);
|
|
char *mc_deserialize_str (const char prefix, const char *data, GError ** error);
|
|
|
|
char *mc_serialize_config (mc_config_t * data, GError ** error);
|
|
mc_config_t *mc_deserialize_config (const char *data, GError ** error);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif
|