Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
NLua
Commits
93cf684e
Commit
93cf684e
authored
May 18, 2013
by
Vinicius Jarina
Browse files
Fixed the build.
parent
1414ef61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Core/NLua/LuaLib/LuaLib.cs
View file @
93cf684e
...
@@ -410,6 +410,11 @@ namespace NLua
...
@@ -410,6 +410,11 @@ namespace NLua
return
LuaCore
.
luaL_loadbuffer
(
luaState
,
buff
,
(
uint
)
buff
.
Length
,
name
);
return
LuaCore
.
luaL_loadbuffer
(
luaState
,
buff
,
(
uint
)
buff
.
Length
,
name
);
}
}
public
static
int
luaL_loadbuffer
(
LuaCore
.
lua_State
luaState
,
byte
[]
buff
,
string
name
)
{
return
LuaCore
.
luaL_loadbuffer
(
luaState
,
buff
,
(
uint
)
buff
.
Length
,
name
);
}
public
static
int
luaL_loadfile
(
LuaCore
.
lua_State
luaState
,
string
filename
)
public
static
int
luaL_loadfile
(
LuaCore
.
lua_State
luaState
,
string
filename
)
{
{
return
LuaCore
.
luaL_loadfile
(
luaState
,
filename
);
return
LuaCore
.
luaL_loadfile
(
luaState
,
filename
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment