OpenMiner  0.0.1a
Voxel game engine
Static Public Member Functions | List of all members
sol::stack::pusher< wchar_t * > Struct Template Reference

#include <sol.hpp>

Static Public Member Functions

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)
 

Member Function Documentation

§ push() [1/3]

static int sol::stack::pusher< wchar_t * >::push ( lua_State *  L,
const wchar_t *  str 
)
inlinestatic
11005  {
11006  pusher<const wchar_t*> p{};
11007  (void)p;
11008  return p.push(L, str);
11009  }

§ push() [2/3]

static int sol::stack::pusher< wchar_t * >::push ( lua_State *  L,
const wchar_t *  strb,
const wchar_t *  stre 
)
inlinestatic
11011  {
11012  pusher<const wchar_t*> p{};
11013  (void)p;
11014  return p.push(L, strb, stre);
11015  }

§ push() [3/3]

static int sol::stack::pusher< wchar_t * >::push ( lua_State *  L,
const wchar_t *  str,
std::size_t  len 
)
inlinestatic
11017  {
11018  pusher<const wchar_t*> p{};
11019  (void)p;
11020  return p.push(L, str, len);
11021  }

The documentation for this struct was generated from the following file: