Changes in src/io/utils_apple_audio.c [2da7526:9209c79]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/utils_apple_audio.c
r2da7526 r9209c79 34 34 } 35 35 36 CFURLRef createURLFromPath(const char * path) {36 CFURLRef getURLFromPath(const char * path) { 37 37 CFStringRef cfTotalPath = CFStringCreateWithCString (kCFAllocatorDefault, 38 38 path, kCFStringEncodingUTF8); 39 39 40 CFURLRef url =CFURLCreateWithFileSystemPath(kCFAllocatorDefault, cfTotalPath,40 return CFURLCreateWithFileSystemPath(kCFAllocatorDefault, cfTotalPath, 41 41 kCFURLPOSIXPathStyle, false); 42 CFRelease(cfTotalPath);43 return url;44 42 } 45 43
Note: See TracChangeset
for help on using the changeset viewer.