fix cr/lfs and remove trailing whitespaces...
[supertux.git] / src / squirrel / include / sqstdblob.h
1 /*      see copyright notice in squirrel.h */
2 #ifndef _SQSTDBLOB_H_
3 #define _SQSTDBLOB_H_
4
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8
9 SQUIRREL_API SQUserPointer sqstd_createblob(HSQUIRRELVM v, SQInteger size);
10 SQUIRREL_API SQRESULT sqstd_getblob(HSQUIRRELVM v,SQInteger idx,SQUserPointer *ptr);
11 SQUIRREL_API SQInteger sqstd_getblobsize(HSQUIRRELVM v,SQInteger idx);
12
13 SQUIRREL_API SQRESULT sqstd_register_bloblib(HSQUIRRELVM v);
14
15 #ifdef __cplusplus
16 } /*extern "C"*/
17 #endif
18
19 #endif /*_SQSTDBLOB_H_*/