Tao.Lua SDK Documentation

Lua.luaL_prepbuffer Method 

Returns an address to a space of size LUAL_BUFFERSIZE where you can copy a string to be added to buffer B (see luaL_Buffer). After copying the string into this space you must call luaL_addsize with the size of the string to actually add it to the buffer.

[Visual Basic]
Public Shared Function luaL_prepbuffer( _
   ByRef B As luaL_Buffer _
) As String
[C#]
public static string luaL_prepbuffer(
   ref luaL_Buffer B
);

Parameters

B

Return Value

See Also

Lua Class | Tao.Lua Namespace