1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00
elua/inc/elua_uip.h

17 lines
235 B
C
Raw Normal View History

// UIP "helper" for eLua
// Implements the eLua specific UIP application
#ifndef __ELUA_UIP_H__
#define __ELUA_UIP_H__
// eLua UIP state
struct elua_uip_state
{
int dummy;
};
void elua_uip_appcall();
void elua_uip_init();
#endif