]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/utils_osx.cpp
Added Undo, Redo accelerators for wxRTC
[wxWidgets.git] / src / osx / utils_osx.cpp
index 5882a671448292c0be355a6abd1f371cdc3db6b4..8bd06e843e20fcb3b3bd4958abadf8de9ed17f06 100644 (file)
@@ -156,4 +156,24 @@ CGColorRef wxMacCreateCGColorFromHITheme( ThemeBrush brush )
     return color;
 }
 
+//---------------------------------------------------------------------------
+// Mac Specific string utility functions
+//---------------------------------------------------------------------------
+
+void wxMacStringToPascal( const wxString&from , unsigned char * to )
+{
+    wxCharBuffer buf = from.mb_str( wxConvLocal );
+    int len = strlen(buf);
+
+    if ( len > 255 )
+        len = 255;
+    to[0] = len;
+    memcpy( (char*) &to[1] , buf , len );
+}
+
+wxString wxMacMakeStringFromPascal( const unsigned char * from )
+{
+    return wxString( (char*) &from[1] , wxConvLocal , from[0] );
+}
+
 #endif // wxOSX_USE_COCOA_OR_CARBON