-
Notifications
You must be signed in to change notification settings - Fork 3
/
TagLib+CoverArt.h
35 lines (22 loc) · 1.34 KB
/
TagLib+CoverArt.h
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
35
//
// TagLib+AIFFCoverArt.h
// Loopseque Twins
//
// Created by Павел Литвиненко on 23.10.14.
// Copyright (c) 2014 Casual Underground. All rights reserved.
//
//_______________________________________________________________________________________________________________
#ifndef __Loopseque_Twins__TagLib_CoverArt__
#define __Loopseque_Twins__TagLib_CoverArt__
//_______________________________________________________________________________________________________________
#include <CoreFoundation/CoreFoundation.h>
//_______________________________________________________________________________________________________________
CF_EXTERN_C_BEGIN
//_______________________________________________________________________________________________________________
Boolean CopyCoverArtDataFromFileAtPath(CFStringRef path, CFDataRef *data);
Boolean SetCoverArtDataToFileAtPath (CFStringRef path, CFDataRef data);
//_______________________________________________________________________________________________________________
CF_EXTERN_C_END
//_______________________________________________________________________________________________________________
#endif /* defined(__Loopseque_Twins__TagLib_AIFFCoverArt__) */
//_______________________________________________________________________________________________________________