StringBuffer.getValueString Method¶
Module: StringBuffer
Definition¶
(C++) Retrieves a pointer to the internal string representation, allowing for low-level operations or optimizations specific to C++ string handling.
This method is particularly useful in performance-critical sections where direct access to the underlying string representation is necessary.
int id3DevicesStringBuffer_GetValueString (
ID3_DEVICES_STRING_BUFFER hStringBuffer,
void ** stringPtr)
Parameters
hStringBuffer
ID3_DEVICES_STRING_BUFFERin Handle to the StringBuffer object.stringPtr
void **out Outputs a pointer to the internal string data
Returns