This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch efl
in repository laugh.

View the commit online.

commit a444972bd1d65956f086f6dabd5791c607d64d26
Author: melerva <[email protected]>
AuthorDate: Sun Sep 21 13:03:26 2025 -0400

    stub to compile
---
 src/modules/laugh_ui_efl.c | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/src/modules/laugh_ui_efl.c b/src/modules/laugh_ui_efl.c
new file mode 100644
index 0000000..b362d45
--- /dev/null
+++ b/src/modules/laugh_ui_efl.c
@@ -0,0 +1,23 @@
+#include "config.h"
+
+#include <assert.h>
+#include <ctype.h>
+#include <lauxlib.h>
+#include <locale.h>
+#include <lua.h>
+#include <lualib.h>
+#include <physfs.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <Efl_Ui.h>
+
+static const luaL_Reg laugh_ui_efl_lib[] = {
+  {NULL, NULL},
+};
+
+int luaopen_laugh_ui_efl(lua_State *const L) {
+  luaL_newlib(L, laugh_ui_efl_lib);
+  return 1;
+}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to