Нет описания

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef BPRE_H_
  2. #define BPRE_H_
  3. #include "types.h"
  4. #include "sound.h"
  5. #include "fade.h"
  6. #include "lcd.h"
  7. #include <callback.h>
  8. #include <config.h>
  9. u16 *var_access(int index);
  10. u8 flag_check(int flag);
  11. void clear_flag(u16 flag);
  12. void* malloc(int size);
  13. void free(void* address);
  14. // sound related stuff
  15. extern MPlayTable mplay_table[];
  16. extern SongTable _songtable[];
  17. void m4aSongNumStart(u16 songid);
  18. void MPlayStart_rev01(MusicPlayerArea *ma, SongHeader *so);
  19. void MPlayContinue(MusicPlayerArea *ma);
  20. //graphical stuff
  21. //object related stuff
  22. void objc_exec();
  23. void obj_sync();
  24. //task related stuff
  25. void task_exec();
  26. #endif