]> git.jsancho.org Git - lugaru.git/blobdiff - Source/MacCompatibility.cpp
First step at cleaning image loading.
[lugaru.git] / Source / MacCompatibility.cpp
index 7e06997d8cce9ce55074078dd9c184f117bcc66d..b5362345c6c8828f285a7b1b2fa5fde480866446 100644 (file)
@@ -69,23 +69,6 @@ public:
 };
 static AppTime g_appTime;
 
-
-void CopyCStringToPascal( const char* src, unsigned char dst[256])
-{
-    int len = strlen( src);
-    dst[ 0] = len;
-    memcpy( dst + 1, src, len);
-}
-
-
-void CopyPascalStringToC( const unsigned char* src, char* dst)
-{
-    int len = src[ 0];
-    memcpy( dst, src + 1, len);
-    dst[ len] = 0;
-}
-
-
 AbsoluteTime UpTime()
 {
     __int64 counter;