mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 20:50:45 +02:00
* fixed luaL_error declaration after r13618
git-svn-id: trunk@13628 -
This commit is contained in:
parent
425170167d
commit
099eb19ac9
@ -66,7 +66,7 @@ function luaL_newmetatable(L: Plua_State; const tname: PChar): Integer; cdecl;
|
||||
function luaL_checkudata(L: Plua_State; ud: Integer; const tname: PChar): Pointer; cdecl;
|
||||
|
||||
procedure luaL_where(L: Plua_State; lvl: Integer); cdecl;
|
||||
function luaL_error(L: Plua_State; const fmt: PChar; args: array of const): Integer; cdecl; // note: C's ... to array of const conversion is not portable to Delphi
|
||||
function luaL_error(L: Plua_State; const fmt: PChar; args: array of const): Integer; cdecl; external LUA_LIB_NAME; // note: C's ... to array of const conversion is not portable to Delphi
|
||||
|
||||
function luaL_checkoption(L: Plua_State; narg: Integer; def: PChar; lst: PPChar): Integer; cdecl;
|
||||
|
||||
@ -206,7 +206,7 @@ function luaL_newmetatable(L: Plua_State; const tname: PChar): Integer; cdecl; e
|
||||
function luaL_checkudata(L: Plua_State; ud: Integer; const tname: PChar): Pointer; cdecl; external LUA_LIB_NAME;
|
||||
|
||||
procedure luaL_where(L: Plua_State; lvl: Integer); cdecl; external LUA_LIB_NAME;
|
||||
function luaL_error(L: Plua_State; const fmt: PChar; args: array of const): Integer; cdecl; external LUA_LIB_NAME;
|
||||
// function luaL_error(L: Plua_State; const fmt: PChar; args: array of const): Integer; cdecl; external LUA_LIB_NAME;
|
||||
|
||||
function luaL_checkoption(L: Plua_State; narg: Integer; def: PChar; lst: PPChar): Integer; cdecl; external LUA_LIB_NAME;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user