blob: 731cd928fd8d7360829190f98648216502ba7b6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//
// GetMetadataForFile.m
// Psx-Memcard
//
// Created by C.W. Betts on 6/6/14.
//
//
#include <CoreFoundation/CoreFoundation.h>
#import <Foundation/Foundation.h>
#include "GetMetadataForFile.h"
//==============================================================================
//
// Get metadata attributes from document files
//
// The purpose of this function is to extract useful information from the
// file formats for your document, and set the values into the attribute
// dictionary for Spotlight to include.
//
//==============================================================================
Boolean GetMetadataForFile(void *thisInterface, CFMutableDictionaryRef attributes, CFStringRef contentTypeUTI, CFStringRef pathToFile)
{
Boolean ok = FALSE;
@autoreleasepool {
NSMutableDictionary *attr = (__bridge NSMutableDictionary*)attributes;
NSString *path = (__bridge NSString*)pathToFile;
}
// Return the status
return ok;
}
|