1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
---|---|
2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
3 | #ifndef __INCLUDEHANDLER_H__ |
4 | #define __INCLUDEHANDLER_H__ |
5 | |
6 | #include "BsASTFX.h" |
7 | |
8 | char* includePush(ParseState* state, const char* filename, int line, int column, int* size); |
9 | void includePop(ParseState* state); |
10 | |
11 | #endif |