MINOR: lua: core: create "core" class and object

This object provides main HAProxy functions. This first version
creates an empty object. It will be enhanced later.
diff --git a/include/types/hlua.h b/include/types/hlua.h
index cfeb767..b2c3997 100644
--- a/include/types/hlua.h
+++ b/include/types/hlua.h
@@ -3,6 +3,8 @@
 
 #include <lua.h>
 
+#define CLASS_CORE     "Core"
+
 enum hlua_state {
 	HLUA_STOP = 0,
 	HLUA_RUN,