Creates memory stream as copy of string contents
| 3055 | |
| 3056 | /// Creates memory stream as copy of string contents |
| 3057 | LVStreamRef LVCreateStringStream( lString8 data ) |
| 3058 | { |
| 3059 | LVMemoryStream * stream = new LVMemoryStream(); |
| 3060 | stream->CreateCopy( (const lUInt8*)data.c_str(), data.length(), LVOM_READ ); |
| 3061 | return LVStreamRef( stream ); |
| 3062 | } |
| 3063 | |
| 3064 | /// Creates memory stream as copy of string contents |
| 3065 | LVStreamRef LVCreateStringStream( lString16 data ) |
no test coverage detected