--------------------------------------------------------------------------- Name: gtString::asCharArray Description: Return this string as a nullptr terminated wchar array. Author: AMD Developer Tools Team Date: 16/11/2003 ---------------------------------------------------------------------------
| 151 | // Date: 16/11/2003 |
| 152 | // --------------------------------------------------------------------------- |
| 153 | const wchar_t* gtString::asCharArray() const |
| 154 | { |
| 155 | return _impl.c_str(); |
| 156 | }; |
| 157 | |
| 158 | // --------------------------------------------------------------------------- |
| 159 | // TO_DO: Unicode - check performance and memory for this function |
no outgoing calls