| 43 | void writeString(const char* value,Mona::UInt32 size) { start(); lua_pushlstring(_pState,value,size); end(); } |
| 44 | void writeBoolean(bool value) { start(); lua_pushboolean(_pState, value); end(); } |
| 45 | void writeNull() { start(); lua_pushnil(_pState); end(); } |
| 46 | Mona::UInt64 writeDate(const Mona::Date& date); |
| 47 | Mona::UInt64 writeBytes(const Mona::UInt8* data,Mona::UInt32 size); |
| 48 |