ec36322140
This avoids some pedantic compiler warnings and also removes any non-shared data from the squirrel core. Before: size --totals sqstdlib/*.o squirrel/*.o text data bss dec hex filename 261270 3776 0 265046 40b56 (TOTALS) After: size --totals sqstdlib/*.o squirrel/*.o text data bss dec hex filename 265046 0 0 265046 40b56 (TOTALS)
19 lines
785 B
C
19 lines
785 B
C
/* see copyright notice in squirrel.h */
|
|
#ifndef _SQSTD_STREAM_H_
|
|
#define _SQSTD_STREAM_H_
|
|
|
|
SQInteger _stream_readblob(HSQUIRRELVM v);
|
|
SQInteger _stream_readline(HSQUIRRELVM v);
|
|
SQInteger _stream_readn(HSQUIRRELVM v);
|
|
SQInteger _stream_writeblob(HSQUIRRELVM v);
|
|
SQInteger _stream_writen(HSQUIRRELVM v);
|
|
SQInteger _stream_seek(HSQUIRRELVM v);
|
|
SQInteger _stream_tell(HSQUIRRELVM v);
|
|
SQInteger _stream_len(HSQUIRRELVM v);
|
|
SQInteger _stream_eos(HSQUIRRELVM v);
|
|
SQInteger _stream_flush(HSQUIRRELVM v);
|
|
|
|
#define _DECL_STREAM_FUNC(name,nparams,typecheck) {_SC(#name),_stream_##name,nparams,typecheck}
|
|
SQRESULT declare_stream(HSQUIRRELVM v,const SQChar* name,SQUserPointer typetag,const SQChar* reg_name,const SQRegFunction *methods,const SQRegFunction *globals);
|
|
#endif /*_SQSTD_STREAM_H_*/
|