Skip to content

Commit bb8e07a

Browse files
committed
Added minimal declaration in AppSupport/CPRecord.h to make MusicLibrary compilable.
1 parent b977887 commit bb8e07a

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

AppSupport/CPRecord.h

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/*
2+
3+
CPRecord.h ... AppSupport Records Database.
4+
5+
Copyright (c) 2010 KennyTM~ <[email protected]>
6+
All rights reserved.
7+
8+
Redistribution and use in source and binary forms, with or without modification,
9+
are permitted provided that the following conditions are met:
10+
11+
* Redistributions of source code must retain the above copyright notice, this
12+
list of conditions and the following disclaimer.
13+
* Redistributions in binary form must reproduce the above copyright notice,
14+
this list of conditions and the following disclaimer in the documentation
15+
and/or other materials provided with the distribution.
16+
* Neither the name of the KennyTM~ nor the names of its contributors may be
17+
used to endorse or promote products derived from this software without
18+
specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
21+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
24+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
27+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
31+
*/
32+
33+
#ifndef APPSUPPORT_CPRECORD_H_dq8kgfl0px
34+
#define APPSUPPORT_CPRECORD_H_dq8kgfl0px
35+
36+
#if __cplusplus
37+
extern "C" {
38+
#endif
39+
40+
typedef struct __CPRecordStore* CPRecordStoreRef;
41+
typedef struct __CPRecordIDArray* CPRecordIDArrayRef;
42+
typedef struct __CPRecordIDDictionary* CPRecordIDDictionaryRef;
43+
44+
#if __cplusplus
45+
}
46+
#endif
47+
48+
#endif

0 commit comments

Comments
 (0)