py_functions.h 245 B

12345678910111213141516
  1. #ifndef _PY_FUNCTIONS_H_
  2. #define _PY_FUNCTIONS_H_
  3. #include "../emulator.h"
  4. #include "py_interface.h"
  5. void play_emu();
  6. void pause_emu();
  7. void cmd_emu(char *line, int len);
  8. void start_emu(char *file);
  9. void stop_emu();
  10. void reset_emu();
  11. #endif