This file is indexed.

/usr/include/coverart/caa_c.h is in libcoverart-dev 1.0.0+git20140109-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
/* --------------------------------------------------------------------------

   libcoverart - Client library to access MusicBrainz

   Copyright (C) 2012 Andrew Hawkins

   This file is part of libcoverart.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   libcoverart is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this library.  If not, see <http://www.gnu.org/licenses/>.

   THIS FILE IS AUTOMATICALLY GENERATED - DO NOT EDIT IT!

----------------------------------------------------------------------------*/



/*
	Things you should delete using the appropriate caa_xxx_delete() function:

	* The coverart object you create to do the actual work
	* The releaseinfo object returned from the caa_coverart_releaseinfo() function
	* Any image data returned from the caa_fetch_xxx functions
	* The return from any caa_xxx_clone() function

	Everything else remains managed by the library, and should not be deleted

	If in doubt, valgrind is a useful way to spot leaks or things being deleted
	when they shouldn't be.

*/

#ifndef _COVERART_MB_C_H
#define _COVERART_MB_C_H

#include "coverart/defines.h"

#ifdef __cplusplus
extern "C"
{
#endif
	

  typedef void *CaaCoverArt;
  typedef void *CaaImage;
  typedef void *CaaReleaseInfo;
  typedef void *CaaThumbnails;
  typedef void *CaaType;
  typedef void *CaaImageList;
  typedef void *CaaTypeList;

/**
* Delete a #CaaCoverArt object
*
* @param CoverArt Object to delete
*/
  void caa_coverart_delete(CaaCoverArt CoverArt);

/**
* Clone a #CaaCoverArt object
*
* @param CoverArt Object to clone
*
* @return Cloned object. This object <b>must</b> be deleted once
*				finished with.
*/
  CaaCoverArt caa_coverart_clone(CaaCoverArt CoverArt);

/**
 * @see CoverArtArchive::CCoverArt::LastHTTPCode
 *
 * @param CoverArt #CaaCoverArt object
 *
 * @return Returned value
 */
  int caa_coverart_get_lasthttpcode(CaaCoverArt CoverArt);

/**
 * @see CoverArtArchive::CCoverArt::LastErrorMessage
 *
 * @param CoverArt #CaaCoverArt object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_coverart_get_lasterrormessage(CaaCoverArt CoverArt, char *str, int len);

/**
 * @see CoverArtArchive::CCoverArt::Version
 *
 * @param CoverArt #CaaCoverArt object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_coverart_get_version(CaaCoverArt CoverArt, char *str, int len);

/* --------------------------------------------------------------------------

   libcoverart - Client library to access MusicBrainz

   Copyright (C) 2012 Andrew Hawkins

   This file is part of libcoverart.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   libcoverart is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this library.  If not, see <http://www.gnu.org/licenses/>.

     $Id$

----------------------------------------------------------------------------*/

typedef void *CaaImageData;

/**
 * Create a new instance of #CaaCoverArt.
 *
 * @see CoverArtArchive::CCoverArt::CCoverArt
 *
 * @param UserAgent User agent to be passed to submissions
 *
 * @return The newly created #CaaCoverArt object. This object <b>must</b> be deleted once
 *				finished with.
 */

	CaaCoverArt caa_coverart_new(const char *UserAgent);

/**
 * Set the proxy server
 *
 * @see CoverArtArchive::CCoverArt::SetProxyHost
 *
 * @param CoverArt #CaaCoverArt object
 * @param ProxyHost Proxy server to use
 */
	void caa_coverart_set_proxyhost(CaaCoverArt CoverArt, const char *ProxyHost);

/**
 *	Set the port to use on the proxy server
 *
 * @see CoverArtArchive::CCoverArt::SetProxyPort
 *
 * @param CoverArt #CaaCoverArt object
 * @param ProxyPort Port to use on proxy server
 */
	void caa_coverart_set_proxyport(CaaCoverArt CoverArt, int ProxyPort);

/**
 *	Set the username to use to authenticate to the proxy server
 *
 * @see CoverArtArchive::CCoverArt::SetProxyUserName
 *
 * @param CoverArt #CaaCoverArt object
 * @param	ProxyUserName User name to use
 */
	void caa_coverart_set_proxyusername(CaaCoverArt CoverArt, const char *ProxyUserName);

/**
 * Set the password to use to authenticate to the proxy server
 *
 * @see CoverArtArchive::CCoverArt::SetProxyPassword
 *
 * @param CoverArt #CaaCoverArt object
 * @param ProxyPassword Password to use
 */
	void caa_coverart_set_proxypassword(CaaCoverArt CoverArt, const char *ProxyPassword);

/**
 * Request the front image for a release
 *
 * @see CoverArtArchive::CCoverArt::FetchFront
 *
 * @param CoverArt #CaaCoverArt object
 * @param ReleaseID The release ID
 *
 * @return The downloaded image. This object <b>must</b> be deleted once
 *				finished with.
 */
	CaaImageData caa_coverart_fetch_front(CaaCoverArt CoverArt, const char *ReleaseID);

/**
 * Request the back image for a release
 *
 * @see CoverArtArchive::CCoverArt::FetchBack
 *
 * @param CoverArt #CaaCoverArt object
 * @param ReleaseID The release ID
 *
 * @return The downloaded image. This object <b>must</b> be deleted once
 *				finished with.
 */
	CaaImageData caa_coverart_fetch_back(CaaCoverArt CoverArt, const char *ReleaseID);

	typedef enum
	{
		eSize_Full=0,
		eSize_250=250,
		eSize_500=500
	} tImageSize;

/**
 * Request a specific image for a release
 *
 * @see CoverArtArchive::CCoverArt::FetchImage
 *
 * @param CoverArt #CaaCoverArt object
 * @param ReleaseID The release ID
 * @param ImageID The image ID
 * @param ImageSize The size of image to retrieve
 *
 * @return The downloaded image. This object <b>must</b> be deleted once
 *				finished with.
 */
	CaaImageData caa_coverart_fetch_image(CaaCoverArt CoverArt, const char *ReleaseID, const char *ImageID, tImageSize ImageSize);

/**
 * Request all information about a release
 *
 * @see CoverArtArchive::CCoverArt::ReleaseInfo
 *
 * @param CoverArt #CaaCoverArt object
 * @param ReleaseID The release ID
 *
 * @return Release information. This object <b>must</b> be deleted once
 *				finished with.
 */
	CaaReleaseInfo caa_coverart_releaseinfo(CaaCoverArt CoverArt, const char *ReleaseID);

/**
 * @see CoverArtArchive::CCoverArt::tCoverArtResult
 */

	typedef enum
	{
			eCoverArt_Success=0,
			eCoverArt_ConnectionError,
			eCoverArt_Timeout,
			eCoverArt_AuthenticationError,
			eCoverArt_FetchError,
			eCoverArt_RequestError,
			eCoverArt_ResourceNotFound
	} tCoverArtResult;

/**
 * @see CoverArtArchive::CCoverArt::LastResult
 *
 * @param CoverArt #CaaCoverArt object
 *
 * @return Last CoverArt result code
 */
	tCoverArtResult caa_coverart_get_lastresult(CaaCoverArt CoverArt);



/**
* Delete a #CaaImage object
*
* @param Image Object to delete
*/
  void caa_image_delete(CaaImage Image);

/**
* Clone a #CaaImage object
*
* @param Image Object to clone
*
* @return Cloned object. This object <b>must</b> be deleted once
*				finished with.
*/
  CaaImage caa_image_clone(CaaImage Image);

/**
 * @see CoverArtArchive::CImage::Approved
 *
 * @param Image #CaaImage object
 *
 * @return Returned value
 */
  int caa_image_get_approved(CaaImage Image);

/**
 * @see CoverArtArchive::CImage::Back
 *
 * @param Image #CaaImage object
 *
 * @return Returned value
 */
  int caa_image_get_back(CaaImage Image);

/**
 * @see CoverArtArchive::CImage::Comment
 *
 * @param Image #CaaImage object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_image_get_comment(CaaImage Image, char *str, int len);

/**
 * @see CoverArtArchive::CImage::Edit
 *
 * @param Image #CaaImage object
 *
 * @return Returned value
 */
  int caa_image_get_edit(CaaImage Image);

/**
 * @see CoverArtArchive::CImage::Front
 *
 * @param Image #CaaImage object
 *
 * @return Returned value
 */
  int caa_image_get_front(CaaImage Image);

/**
 * @see CoverArtArchive::CImage::ID
 *
 * @param Image #CaaImage object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_image_get_id(CaaImage Image, char *str, int len);

/**
 * @see CoverArtArchive::CImage::Image
 *
 * @param Image #CaaImage object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_image_get_image(CaaImage Image, char *str, int len);

/**
 * @see CoverArtArchive::CImage::Thumbnails
 *
 * @param Image #CaaImage object
 *
 * @return #CaaThumbnails object
 */
  CaaThumbnails caa_image_get_thumbnails(CaaImage Image);

/**
 * @see CoverArtArchive::CImage::TypeList
 *
 * @param Image #CaaImage object
 *
 * @return #CaaTypeList object
 */
  CaaTypeList caa_image_get_typelist(CaaImage Image);

/* --------------------------------------------------------------------------

   libcoverart - Client library to access MusicBrainz

   Copyright (C) 2012 Andrew Hawkins

   This file is part of libcoverart.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   libcoverart is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this library.  If not, see <http://www.gnu.org/licenses/>.

     $Id$

----------------------------------------------------------------------------*/

/**
* Delete a #CaaImageData object
*
* @param ImageData Object to delete
*/
  void caa_imagedata_delete(CaaImageData ImageData);

/**
* Clone a #CaaImageData object
*
* @param ImageData Object to clone
*
* @return Cloned object. This object <b>must</b> be deleted once
*				finished with.
*/
  CaaImageData caa_imagedata_clone(CaaImageData ImageData);

/**
 * Return the number of bytes in a #CaaImageData object
 *
 * @param ImageData #CaaImageData object
 *
 * @return The number of bytes in the object
 */
	int caa_imagedata_size(CaaImageData ImageData);

/**
 * Return the data in a #CaaImageData object
 *
 * @param ImageData #CaaImageData object
 *
 * @return The data in the object. This data <b>must not</b> be deleted.
 */
	unsigned char *caa_imagedata_data(CaaImageData ImageData);



/**
* Delete a #CaaReleaseInfo object
*
* @param ReleaseInfo Object to delete
*/
  void caa_releaseinfo_delete(CaaReleaseInfo ReleaseInfo);

/**
* Clone a #CaaReleaseInfo object
*
* @param ReleaseInfo Object to clone
*
* @return Cloned object. This object <b>must</b> be deleted once
*				finished with.
*/
  CaaReleaseInfo caa_releaseinfo_clone(CaaReleaseInfo ReleaseInfo);

/**
 * @see CoverArtArchive::CReleaseInfo::Release
 *
 * @param ReleaseInfo #CaaReleaseInfo object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_releaseinfo_get_release(CaaReleaseInfo ReleaseInfo, char *str, int len);

/**
 * @see CoverArtArchive::CReleaseInfo::ImageList
 *
 * @param ReleaseInfo #CaaReleaseInfo object
 *
 * @return #CaaImageList object
 */
  CaaImageList caa_releaseinfo_get_imagelist(CaaReleaseInfo ReleaseInfo);

/**
* Delete a #CaaThumbnails object
*
* @param Thumbnails Object to delete
*/
  void caa_thumbnails_delete(CaaThumbnails Thumbnails);

/**
* Clone a #CaaThumbnails object
*
* @param Thumbnails Object to clone
*
* @return Cloned object. This object <b>must</b> be deleted once
*				finished with.
*/
  CaaThumbnails caa_thumbnails_clone(CaaThumbnails Thumbnails);

/**
 * @see CoverArtArchive::CThumbnails::Large
 *
 * @param Thumbnails #CaaThumbnails object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_thumbnails_get_large(CaaThumbnails Thumbnails, char *str, int len);

/**
 * @see CoverArtArchive::CThumbnails::Small
 *
 * @param Thumbnails #CaaThumbnails object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_thumbnails_get_small(CaaThumbnails Thumbnails, char *str, int len);

/**
* Delete a #CaaType object
*
* @param Type Object to delete
*/
  void caa_type_delete(CaaType Type);

/**
* Clone a #CaaType object
*
* @param Type Object to clone
*
* @return Cloned object. This object <b>must</b> be deleted once
*				finished with.
*/
  CaaType caa_type_clone(CaaType Type);

/**
 * @see CoverArtArchive::CType::Type
 *
 * @param Type #CaaType object
 * @param str Returned string
 * @param len Number of characters available in return string
 *
 * @return The number of characters in the string to copy (not including terminating NULL)
 */
  int caa_type_get_type(CaaType Type, char *str, int len);

/**
 * Delete a #CaaImageList
 *
 * @param List List to delete
 */
  void caa_image_list_delete(CaaImageList List);

/**
 * Return the number of entries in a #CaaImageList
 *
 * @param	List List to use
 */
  int caa_image_list_size(CaaImageList List);

/**
 * Returns an entry from a #CaaImageList
 *
 * @param List List to use
 * @param Item Item number to return
 *
 * @return A #CaaImage object.
 */
  CaaImage caa_image_list_item(CaaImageList List, int Item);

/**
 *	Return the count of entries in an #CaaImageList
 *
 * @param	List List to use
 */
	int caa_image_list_get_count(CaaImageList List);

/**
 *	Return the offset of entries in an #CaaImageList
 *
 * @param	List List to use
 */
	int caa_image_list_get_offset(CaaImageList List);

/**
* Clone an #CaaImageList object
*
* @param ImageList Object to clone
*
* @return Cloned list. This list <b>must</b> be deleted once
*				finished with.
*/
  CaaImageList caa_image_list_clone(CaaImageList ImageList);

/**
 * Delete a #CaaTypeList
 *
 * @param List List to delete
 */
  void caa_type_list_delete(CaaTypeList List);

/**
 * Return the number of entries in a #CaaTypeList
 *
 * @param	List List to use
 */
  int caa_type_list_size(CaaTypeList List);

/**
 * Returns an entry from a #CaaTypeList
 *
 * @param List List to use
 * @param Item Item number to return
 *
 * @return A #CaaType object.
 */
  CaaType caa_type_list_item(CaaTypeList List, int Item);

/**
 *	Return the count of entries in an #CaaTypeList
 *
 * @param	List List to use
 */
	int caa_type_list_get_count(CaaTypeList List);

/**
 *	Return the offset of entries in an #CaaTypeList
 *
 * @param	List List to use
 */
	int caa_type_list_get_offset(CaaTypeList List);

/**
* Clone an #CaaTypeList object
*
* @param TypeList Object to clone
*
* @return Cloned list. This list <b>must</b> be deleted once
*				finished with.
*/
  CaaTypeList caa_type_list_clone(CaaTypeList TypeList);


#ifdef __cplusplus
}
#endif

#endif