--------------------------------------------------------------------------- Name: gtString::length Description: Returns this string length in bytes Author: AMD Developer Tools Team Date: 07/09/2010 ---------------------------------------------------------------------------
| 312 | // Date: 07/09/2010 |
| 313 | // --------------------------------------------------------------------------- |
| 314 | int gtString::lengthInBytes() const |
| 315 | { |
| 316 | // TO_DO: Unicode - use preprocessor definitions (http://www.firstobject.com/wchar_t-string-on-linux-osx-windows.htm) |
| 317 | // (Static sizeof variable) |
| 318 | return (int)_impl.length() * sizeof(wchar_t); |
| 319 | }; |
| 320 | |
| 321 | |
| 322 | // --------------------------------------------------------------------------- |