console.h 514 B

1234567891011121314151617181920
  1. //
  2. // console.h
  3. // gravity
  4. //
  5. // Created by Marco Bambini on 23/02/15.
  6. // Copyright (c) 2015 CreoLabs. All rights reserved.
  7. //
  8. #ifndef __GRAVITY_CONSOLE__
  9. #define __GRAVITY_CONSOLE__
  10. #include <stdio.h>
  11. #include "gravity_memory.h"
  12. #include "gravity_delegate.h"
  13. const char *current_filepath (const char *base, const char *file);
  14. void report_error (gravity_vm *vm, error_type_t error_type, const char *message, error_desc_t error_desc, void *xdata);
  15. void report_log (const char *message, void *xdata);
  16. #endif