mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-06 04:00:08 +00:00
Many more String changes, so that finally the String class can store its internal data as either utf8, 16 or 32 - this is controlled by a flag JUCE_STRING_UTF_TYPE. It's currently set to utf-8 by default.
This commit is contained in:
parent
f471f0a72d
commit
533e7ba795
46 changed files with 993 additions and 706 deletions
|
|
@ -125,7 +125,7 @@ void PlatformUtilities::freeDynamicLibrary (void* handle)
|
|||
|
||||
void* PlatformUtilities::getProcedureEntryPoint (void* libraryHandle, const String& procedureName)
|
||||
{
|
||||
return dlsym (libraryHandle, procedureName.toCString());
|
||||
return dlsym (libraryHandle, procedureName.toUTF8());
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue