summaryrefslogtreecommitdiff
path: root/src/3rdparty/squirrel/include/sqstdstring.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-09-06 20:11:00 +0000
committerrubidium <rubidium@openttd.org>2014-09-06 20:11:00 +0000
commit7ece56c3471f934741c539b8cfd1933805e04a3f (patch)
tree515470e71e2ab38325b7ac22560440860d3bab59 /src/3rdparty/squirrel/include/sqstdstring.h
parenta47874754c6dce90b0080c9d40e5c5b1a6114258 (diff)
downloadopenttd-7ece56c3471f934741c539b8cfd1933805e04a3f.tar.xz
(svn r26780) -Cleanup: remove unused SQUIRREL_API macro
Diffstat (limited to 'src/3rdparty/squirrel/include/sqstdstring.h')
-rw-r--r--src/3rdparty/squirrel/include/sqstdstring.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/3rdparty/squirrel/include/sqstdstring.h b/src/3rdparty/squirrel/include/sqstdstring.h
index 32b1a2c39..856c33f79 100644
--- a/src/3rdparty/squirrel/include/sqstdstring.h
+++ b/src/3rdparty/squirrel/include/sqstdstring.h
@@ -10,16 +10,16 @@ typedef struct {
SQInteger len;
} SQRexMatch;
-SQUIRREL_API SQRex *sqstd_rex_compile(const SQChar *pattern,const SQChar **error);
-SQUIRREL_API void sqstd_rex_free(SQRex *exp);
-SQUIRREL_API SQBool sqstd_rex_match(SQRex* exp,const SQChar* text);
-SQUIRREL_API SQBool sqstd_rex_search(SQRex* exp,const SQChar* text, const SQChar** out_begin, const SQChar** out_end);
-SQUIRREL_API SQBool sqstd_rex_searchrange(SQRex* exp,const SQChar* text_begin,const SQChar* text_end,const SQChar** out_begin, const SQChar** out_end);
-SQUIRREL_API SQInteger sqstd_rex_getsubexpcount(SQRex* exp);
-SQUIRREL_API SQBool sqstd_rex_getsubexp(SQRex* exp, SQInteger n, SQRexMatch *subexp);
+SQRex *sqstd_rex_compile(const SQChar *pattern,const SQChar **error);
+void sqstd_rex_free(SQRex *exp);
+SQBool sqstd_rex_match(SQRex* exp,const SQChar* text);
+SQBool sqstd_rex_search(SQRex* exp,const SQChar* text, const SQChar** out_begin, const SQChar** out_end);
+SQBool sqstd_rex_searchrange(SQRex* exp,const SQChar* text_begin,const SQChar* text_end,const SQChar** out_begin, const SQChar** out_end);
+SQInteger sqstd_rex_getsubexpcount(SQRex* exp);
+SQBool sqstd_rex_getsubexp(SQRex* exp, SQInteger n, SQRexMatch *subexp);
-SQUIRREL_API SQRESULT sqstd_format(HSQUIRRELVM v,SQInteger nformatstringidx,SQInteger *outlen,SQChar **output);
+SQRESULT sqstd_format(HSQUIRRELVM v,SQInteger nformatstringidx,SQInteger *outlen,SQChar **output);
-SQUIRREL_API SQRESULT sqstd_register_stringlib(HSQUIRRELVM v);
+SQRESULT sqstd_register_stringlib(HSQUIRRELVM v);
#endif /*_SQSTD_STRING_H_*/