blob: 1d87697895d8efe45dff0693e3838b6972226137 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// GetMetadataForFile.h
// Pcsxr
//
// Created by C.W. Betts on 6/6/14.
//
//
#ifndef Pcsxr_GetMetadataForFile_h
#define Pcsxr_GetMetadataForFile_h
#include <CoreFoundation/CoreFoundation.h>
#define __private_extern __attribute__((visibility("hidden")))
__private_extern Boolean GetMetadataForFile(void *thisInterface, CFMutableDictionaryRef attributes, CFStringRef contentTypeUTI, CFStringRef pathToFile);
#endif
|