mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
44b1cb5d96
Create the initial CMake build scripts.
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_*/
|