Added boilerplate for CObjStream

This commit is contained in:
2021-03-20 01:44:03 -05:00
committed by cpunch
parent d13cc398c8
commit 7b5825668d
4 changed files with 26 additions and 2 deletions

View File

@@ -33,13 +33,14 @@ typedef uint32_t cosmo_Flag;
// objs
typedef struct CObj CObj;
typedef struct CObjObject CObjObject;
typedef struct CObjStream CObjStream;
typedef struct CObjString CObjString;
typedef struct CObjUpval CObjUpval;
typedef struct CObjFunction CObjFunction;
typedef struct CObjCFunction CObjCFunction;
typedef struct CObjMethod CObjMethod;
typedef struct CObjError CObjError;
typedef struct CObjObject CObjObject;
typedef struct CObjTable CObjTable;
typedef struct CObjClosure CObjClosure;