Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
491 B

  1. /* see copyright notice in squirrel.h */
  2. #ifndef _SQSTDBLOB_H_
  3. #define _SQSTDBLOB_H_
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. SQUIRREL_API SQUserPointer sqstd_createblob(HSQUIRRELVM v, SQInteger size);
  8. SQUIRREL_API SQRESULT sqstd_getblob(HSQUIRRELVM v,SQInteger idx,SQUserPointer *ptr);
  9. SQUIRREL_API SQInteger sqstd_getblobsize(HSQUIRRELVM v,SQInteger idx);
  10. SQUIRREL_API SQRESULT sqstd_register_bloblib(HSQUIRRELVM v);
  11. #ifdef __cplusplus
  12. } /*extern "C"*/
  13. #endif
  14. #endif /*_SQSTDBLOB_H_*/