mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
17 lines
235 B
C
17 lines
235 B
C
|
// 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
|