Serialization improvements.
This commit is contained in:
byuu
2019-10-09 00:45:57 +09:00
parent e71da4d8c8
commit d8bc2050be
26 changed files with 115 additions and 96 deletions

View File

@@ -18,6 +18,9 @@ cothread_t co_derive(void*, unsigned int, void (*)(void));
cothread_t co_create(unsigned int, void (*)(void));
void co_delete(cothread_t);
void co_switch(cothread_t);
unsigned int co_size(unsigned int);
void co_save(cothread_t, void*, unsigned int);
void co_load(cothread_t, const void*, unsigned int);
#ifdef __cplusplus
}