circuitpython/shared-module/vectorio/__init__.h
Diego Elio Pettenò dd5d7c86d2 Fix up end of file and trailing whitespace.
This can be enforced by pre-commit, but correct it separately to make it easier to review.
2020-06-03 10:56:35 +01:00

15 lines
267 B
C

#ifndef MICROPY_INCLUDED_SHARED_MODULE_VECTORIO_INIT_H
#define MICROPY_INCLUDED_SHARED_MODULE_VECTORIO_INIT_H
#include "py/obj.h"
typedef void event_function(mp_obj_t obj);
typedef struct {
mp_obj_t obj;
event_function *event;
} vectorio_event_t;
#endif