From f4d34ce1ab690e7343bb5d3523141a27540f48cd Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Fri, 11 Apr 2014 13:28:33 +0100 Subject: [PATCH] elua: pointers won't work with metatypes and these types are opaque anyway --- src/bindings/luajit/eolian.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/bindings/luajit/eolian.lua b/src/bindings/luajit/eolian.lua index 00db38d..45f2528 100644 --- a/src/bindings/luajit/eolian.lua +++ b/src/bindings/luajit/eolian.lua @@ -7,12 +7,12 @@ ffi.cdef [[ typedef unsigned char Eina_Bool; typedef struct _Eina_List Eina_List; - typedef struct _Function_Id* Eolian_Function; - typedef struct _Parameter_Desc* Eolian_Function_Parameter; - typedef struct _Implement_Desc* Eolian_Implement; - typedef struct _Implement_Legacy_Desc* Eolian_Implement_Legacy; - typedef struct _Implement_Legacy_Param* Eolian_Implement_Legacy_Parameter; - typedef struct _Event_Desc* Eolian_Event; + typedef struct _Eolian_Function Eolian_Function; + typedef struct _Eolian_Function_Parameter Eolian_Function_Parameter; + typedef struct _Eolian_Implement Eolian_Implement; + typedef struct _Eolian_Implement_Legacy Eolian_Implement_Legacy; + typedef struct _Eolian_Implement_Legacy_Parameter Eolian_Implement_Legacy_Parameter; + typedef struct _Eolian_Event Eolian_Event; typedef enum { -- 2.7.4