#include <sol.hpp>
|
static int | push (lua_State *L, const wchar_t *str) |
|
static int | push (lua_State *L, const wchar_t *strb, const wchar_t *stre) |
|
static int | push (lua_State *L, const wchar_t *str, std::size_t len) |
|
§ push() [1/3]
11006 pusher<const wchar_t*> p{};
11008 return p.push(L, str);
§ push() [2/3]
static int sol::stack::pusher< wchar_t * >::push |
( |
lua_State * |
L, |
|
|
const wchar_t * |
strb, |
|
|
const wchar_t * |
stre |
|
) |
| |
|
inlinestatic |
11012 pusher<const wchar_t*> p{};
11014 return p.push(L, strb, stre);
§ push() [3/3]
static int sol::stack::pusher< wchar_t * >::push |
( |
lua_State * |
L, |
|
|
const wchar_t * |
str, |
|
|
std::size_t |
len |
|
) |
| |
|
inlinestatic |
11018 pusher<const wchar_t*> p{};
11020 return p.push(L, str, len);
The documentation for this struct was generated from the following file: