Home
last modified time | relevance | path

Searched defs:lua_CFunction (Results 1 – 25 of 167) sorted by relevance

1234567

/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/docs/source/
H A Dfunctions.rst107 .. _the examples: https://github.com/ThePhD/sol2/blob/develop/examples/functions.cpp
108 .. _avoid the nightmare altogether: https://github.com/ThePhD/sol2/issues/608#issuecomment-372876206
/dports/devel/sol2/sol2-4.0.0-alpha/documentation/source/
H A Dfunctions.rst109 .. _the examples: https://github.com/ThePhD/sol2/blob/develop/examples/source/functions.cpp
110 .. _avoid the nightmare altogether: https://github.com/ThePhD/sol2/issues/608#issuecomment-372876206
/dports/graphics/electricsheep/electricsheep-37ba0fd692d6581f8fe009ed11c9650cd8174123/client_generic/Common/
H A DLuaState.h13 typedef int (*lua_CFunction) (lua_State *L); typedef
/dports/emulators/mess/mame-mame0226/3rdparty/sol2/docs/source/api/
H A Dstack.rst199 .. _lua_CFunction: http://www.Lua.org/manual/5.3/manual.html#lua_CFunction target
/dports/emulators/mame/mame-mame0226/3rdparty/sol2/docs/source/api/
H A Dstack.rst199 .. _lua_CFunction: http://www.Lua.org/manual/5.3/manual.html#lua_CFunction target
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/thread/experimental/parallel/v2/
H A Dinline_namespace.hpp1 #ifndef BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_INLINE_NAMESPACE_HPP
2 #define BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_INLINE_NAMESPACE_HPP
3
4 //////////////////////////////////////////////////////////////////////////////
5 //
6 // (C) Copyright Vicente J. Botet Escriba 2014. Distributed under the Boost
7 // Software License, Version 1.0. (See accompanying file
8 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10 // See http://www.boost.org/libs/thread for documentation.
[all …]
/dports/games/wesnoth/wesnoth-1.14.17/src/scripting/
H A Dgame_lua_kernel.hpp44 typedef int (*lua_CFunction) (lua_State *L); typedef
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/docs/source/api/
H A Dstack.rst330 .. _lua_CFunction: http://www.Lua.org/manual/5.3/manual.html#lua_CFunction target
/dports/devel/sol2/sol2-4.0.0-alpha/documentation/source/api/
H A Dstack.rst325 .. _lua_CFunction: http://www.Lua.org/manual/5.3/manual.html#lua_CFunction target
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/LuaScript/
H A DLuaFunction.h28 typedef int (*lua_CFunction) (lua_State *L); typedef
/dports/graphics/darktable/darktable-3.6.1/src/lua/
H A Dlua.h91 typedef int (*lua_CFunction)(lua_State *L); typedef
/dports/graphics/darktable38/darktable-3.8.0/src/lua/
H A Dlua.h91 typedef int (*lua_CFunction)(lua_State *L); typedef
/dports/misc/xplr/xplr-0.17.0/cargo-crates/mlua-0.7.0/src/ffi/
H A Dlua.rs138 pub type lua_CFunction = unsafe extern "C" fn(L: *mut lua_State) -> c_int; typedef
177 pub fn lua_atpanic(L: *mut lua_State, panicf: lua_CFunction) -> lua_CFunction; in lua_atpanic()
228 pub fn lua_tocfunction(L: *mut lua_State, idx: c_int) -> lua_CFunction; in lua_tocfunction()
322 pub fn lua_pushcclosure(L: *mut lua_State, f: lua_CFunction, n: c_int); in lua_pushcclosure()
447 k: Option<lua_CFunction>, in lua_callk()
466 k: Option<lua_CFunction>, in lua_pcallk()
524 k: Option<lua_CFunction>, in lua_yieldk()
655 pub unsafe fn lua_register(L: *mut lua_State, n: *const c_char, f: lua_CFunction) { in lua_register()
661 pub unsafe fn lua_pushcfunction(L: *mut lua_State, f: lua_CFunction) { in lua_pushcfunction()
/dports/sysutils/vector/rlua-25bd7e6bffef9597466a98bfca80a3056c9e6320/src/
H A Dffi.rs22 pub type lua_CFunction = unsafe extern "C" fn(state: *mut lua_State) -> c_int; typedef
120 pub fn lua_pushcclosure(state: *mut lua_State, function: lua_CFunction, n: c_int); in lua_pushcclosure()
173 pub fn lua_atpanic(state: *mut lua_State, panic: lua_CFunction) -> lua_CFunction; in lua_atpanic()
195 openf: lua_CFunction, in luaL_requiref()
237 pub unsafe fn lua_pushcfunction(state: *mut lua_State, function: lua_CFunction) { in lua_pushcfunction()
/dports/games/gltron/gltron-0.70/lua/include/
H A Dlua.h62 typedef int (*lua_CFunction) (lua_State *L); typedef
/dports/games/tomenet/tomenet-4.6.0/src/server/lua/
H A Dlua.h62 typedef int (*lua_CFunction) (lua_State *L); typedef
/dports/games/zangband/zangband/src/lua/
H A Dlua.h62 typedef int (*lua_CFunction) (lua_State *L); typedef
/dports/games/scummvm/scummvm-2.5.1/engines/grim/lua/
H A Dlua.h32 typedef void (*lua_CFunction)(); typedef
/dports/games/residualvm/residualvm-0.3.1/engines/grim/lua/
H A Dlua.h32 typedef void (*lua_CFunction)(); typedef
/dports/games/scummvm-tools/scummvm-tools-2.5.0/engines/grim/lua/
H A Dlua.h23 typedef void (*lua_CFunction)(void); typedef
/dports/games/blinkensisters/blinkensisters/lostpixels/game/software/BlinkenLUA/LuaMain/headers/
H A Dlua.h46 typedef int (*lua_CFunction) (lua_State *L); typedef
/dports/emulators/mess/mame-mame0226/3rdparty/sol2/sol/
H A Dstack.hpp208 …inline void luajit_exception_handler(lua_State* L, int(*handler)(lua_State*, lua_CFunction) = deta… in luajit_exception_handler() argument
/dports/emulators/mame/mame-mame0226/3rdparty/sol2/sol/
H A Dstack.hpp208 …inline void luajit_exception_handler(lua_State* L, int(*handler)(lua_State*, lua_CFunction) = deta… in luajit_exception_handler() argument
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/sol/
H A Dstack.hpp237 …inline void luajit_exception_handler(lua_State* L, int (*handler)(lua_State*, lua_CFunction) = det… in luajit_exception_handler() argument
/dports/devel/sol2/sol2-4.0.0-alpha/include/sol/
H A Dstack.hpp321 …inline void luajit_exception_handler(lua_State* L, int (*handler)(lua_State*, lua_CFunction) = det… in luajit_exception_handler() argument

1234567