Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/lua-winreg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Melnichuk <alexeymelnichuck@gmail.com>2019-02-23 11:25:48 +0300
committerGitHub <noreply@github.com>2019-02-23 11:25:48 +0300
commit52ffc1b40c19332d7ea19eee7f4cd41d423a880a (patch)
tree381f70400514a1fd4b6cdcdfc41589521e1968d0 /src/lua_mtutil.h
parentffeb14ded654e1237553c5747e60e6dc6154c4c0 (diff)
parent6892f237c5289d3980605c23e8a8b046ecaef345 (diff)
Merge pull request #4 from windirstat/warning-fixupsHEADmaster
Fixed a handful of warnings with Visual C++ and added some defines
Diffstat (limited to 'src/lua_mtutil.h')
-rw-r--r--src/lua_mtutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua_mtutil.h b/src/lua_mtutil.h
index 01f56e9..746552f 100644
--- a/src/lua_mtutil.h
+++ b/src/lua_mtutil.h
@@ -7,7 +7,7 @@ extern "C" {
#include <lualib.h>
#include <lauxlib.h>
-int lua_opentablemt(lua_State *L, const char * libname, const luaL_Reg * reg);
+int lua_opentablemt(lua_State *L, const char * libname, const luaL_Reg * reg, int upval);
void * lua_newuserdatamt(lua_State *L, size_t cdata, const char * mtname, const luaL_Reg * mtreg);
void * lua_newuserdatamtuv(lua_State *L, size_t cdata, const char * mtname, const luaL_Reg * mtreg, int upval);
#ifdef __cplusplus