36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
|
Index: lua-5.3.3/src/lopcodes.h
|
||
|
===================================================================
|
||
|
--- lua-5.3.3.orig/src/lopcodes.h
|
||
|
+++ lua-5.3.3/src/lopcodes.h
|
||
|
@@ -276,7 +276,7 @@ enum OpArgMask {
|
||
|
OpArgK /* argument is a constant or register/constant */
|
||
|
};
|
||
|
|
||
|
-LUAI_DDEC const lu_byte luaP_opmodes[NUM_OPCODES];
|
||
|
+LUA_API const lu_byte luaP_opmodes[NUM_OPCODES];
|
||
|
|
||
|
#define getOpMode(m) (cast(enum OpMode, luaP_opmodes[m] & 3))
|
||
|
#define getBMode(m) (cast(enum OpArgMask, (luaP_opmodes[m] >> 4) & 3))
|
||
|
@@ -285,7 +285,7 @@ LUAI_DDEC const lu_byte luaP_opmodes[NUM
|
||
|
#define testTMode(m) (luaP_opmodes[m] & (1 << 7))
|
||
|
|
||
|
|
||
|
-LUAI_DDEC const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
|
||
|
+LUA_API const char *const luaP_opnames[NUM_OPCODES+1]; /* opcode names */
|
||
|
|
||
|
|
||
|
/* number of list items to accumulate before a SETLIST instruction */
|
||
|
Index: lua-5.3.3/src/lundump.h
|
||
|
===================================================================
|
||
|
--- lua-5.3.3.orig/src/lundump.h
|
||
|
+++ lua-5.3.3/src/lundump.h
|
||
|
@@ -26,7 +26,7 @@
|
||
|
LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
|
||
|
|
||
|
/* dump one chunk; from ldump.c */
|
||
|
-LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
|
||
|
+LUA_API int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
|
||
|
void* data, int strip);
|
||
|
|
||
|
#endif
|