Browse Source

Add the missing prototypes for the preprocessing functionality added sometime ago

mingodad 8 years ago
parent
commit
640f253175
1 changed files with 3 additions and 0 deletions
  1. 3 0
      SquiLu/include/sqapi.h

+ 3 - 0
SquiLu/include/sqapi.h

@@ -26,6 +26,9 @@ SQUIRREL_API_FUNC(SQInteger, getvmstate, (HSQUIRRELVM v))
 SQUIRREL_API_FUNC(SQInteger, getversion, ())
 SQUIRREL_API_FUNC(SQInteger, getversion, ())
 SQUIRREL_API_FUNC(void, set_include_path, (HSQUIRRELVM v, const SQChar *include_path))
 SQUIRREL_API_FUNC(void, set_include_path, (HSQUIRRELVM v, const SQChar *include_path))
 SQUIRREL_API_FUNC(const SQChar*, get_include_path, (HSQUIRRELVM v))
 SQUIRREL_API_FUNC(const SQChar*, get_include_path, (HSQUIRRELVM v))
+SQUIRREL_API_FUNC(SQBool, set_define_name, (HSQUIRRELVM v, const SQChar*))
+SQUIRREL_API_FUNC(void, remove_define_name, (HSQUIRRELVM v, const SQChar*))
+SQUIRREL_API_FUNC(SQBool, exists_define_name, (HSQUIRRELVM v, const SQChar*))
 
 
 /*compiler*/
 /*compiler*/
 #ifndef SQ_MAX_INCLUDE_FILES
 #ifndef SQ_MAX_INCLUDE_FILES