py_interface.h 282 B

12345678910111213
  1. #ifndef _PY_INTERFACE_H_
  2. #define _PY_INTERFACE_H_
  3. #include "py_functions.h"
  4. #include <Python.h>
  5. void print_serial (Emulator *emu, char *buf);
  6. void print_console (Emulator *emu, const char *buf);
  7. void send_control (Emulator *emu, uint8_t opcode, void *data, size_t size);
  8. #endif