BsIncludeHandler.h 556 B

12345678910111213141516171819
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #ifndef __INCLUDEHANDLER_H__
  4. #define __INCLUDEHANDLER_H__
  5. #include "BsASTFX.h"
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. char* includePush(ParseState* state, const char* filename, int line, int column, int* size);
  10. void includePop(ParseState* state);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif