bbmonkey.h 519 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef BB_MONKEY_H
  2. #define BB_MONKEY_H
  3. #include "bbstd.h"
  4. #include "bbtypes.h"
  5. #include "bbassert.h"
  6. #include "bbstring.h"
  7. #include "bbdebug.h"
  8. #include "bbarray.h"
  9. #include "bbfunction.h"
  10. #include "bbobject.h"
  11. #include "bbweakref.h"
  12. #include "bbvariant.h"
  13. #include "bbtypeinfo_t.h"
  14. #include "bbdeclinfo.h"
  15. #ifdef BB_THREADS
  16. #include "bbgc_mx.h"
  17. #else
  18. #include "bbgc.h"
  19. #endif
  20. extern int bb_argc;
  21. extern char **bb_argv;
  22. extern void bb_print( bbString str );
  23. extern void bb_printf( const char *fmt,...);
  24. #endif