From 365077772d3d8d5d479febd0388d7e74ef08d508 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Mon, 8 Dec 2014 22:56:33 +0100 Subject: start implementing the libretro interface. (not working yet) --- libco.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 libco.h (limited to 'libco.h') diff --git a/libco.h b/libco.h new file mode 100644 index 0000000..1464804 --- /dev/null +++ b/libco.h @@ -0,0 +1,37 @@ +/* + libco + version: 0.16 (2010-12-24) + license: public domain +*/ + +#ifndef LIBCO_H +#define LIBCO_H + +#ifdef LIBCO_C + #ifdef LIBCO_MP + #define thread_local __thread + #else + #define thread_local + #endif +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +typedef void* cothread_t; + +cothread_t co_active(void); + +cothread_t co_create(unsigned int, void (*)(void)); + +void co_delete(cothread_t); + +void co_switch(cothread_t); + +#ifdef __cplusplus +} +#endif + +/* ifndef LIBCO_H */ +#endif -- cgit v1.2.3