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
/**
* @ingroup file68_lib
* @file sc68/file68.h
* @author Benjamin Gerard
* @date 1998-09-03
* @brief Music file header.
*
*/
/* Copyright (C) 1998-2011 Benjamin Gerard */
/**
* @defgroup file68_file Music file manipulation
* @ingroup file68_lib
*
* Provides various functions for sc68 file manipulation.
*
* @{
*/
/**
* SC68 (not IANA) official mime-type.
* @see file68_idstr
*/
/**
* SC68 file identification string definition.
* @see file68_identifier()
*/
/**
* SC68 file identification string definition V2.
* @see file68_identifier()
*/
/**
* @name Features flag definitions for music68_t.
* @{
*/
;
/**
* @}
*/
/**
* @}
*/
/**
* Hardware and features flags.
*/
typedef union hwflags68_t;
/**
* SC68 music (track) structure.
*/
typedef struct music68_t;
/**
* SC68 music disk structure.
*
* The disk68_t structure is the memory representation for an SC68
* disk. Each SC68 file could several music or tracks, in the limit
* of a maximum of 99 tracks per file. Each music is independant, but
* some information, including music data, could be inherit from
* previous track. In a general case, tracks are grouped by theme,
* that could be a demo or a game.
*
*/
typedef struct disk68_t;
/**
* @name Meta tag functions.
* @{
*/
/**
* Count and re-order metatags.
*
* The file68_tag_count() function counts metatags and ensures no
* empty tag within that count.
*
* @param mb pointer to SC68 disk
* @param track track number (0:disk)
*
* @retval -1 on error
* @retval >=0 number of tag (in fact it should always be >= 3)
*/
int ;
/**
* Enumerate metatags.
*
* The file68_tag_enum() function enumerates defined metatags.
*
* @param mb pointer to SC68 disk
* @param track track number (0:disk)
* @param idx index of the metatag
* @param key pointer to tag name
* @param val pointer to tag value
*
* @retval -1 on error
* @retval 0 on success
*/
int ;
/**
* Get metatag from disk or track.
*
* The file68_tag_get() function gets the value of a metatag.
*
* @param mb pointer to SC68 disk
* @param track track number (0:disk)
* @param key tag name
*
* @return tag value
* @retval 0 tag is not set
*
* @see file68_tag_set()
*/
const char * ;
/**
* @}
*/
/**
* Get metatag from disk or track.
*
* The file68_tag_set() function sets the value of a metatag.
*
* @param mb pointer to SC68 disk
* @param track track number (0:disk)
* @param key tag name
* @param val tag value to set (0 to unset)
*
* @return tag value
* @retval 0 tag is not set
*
* @see file68_tag_set()
*/
const char * ;
/**
* @name File verify functions.
* @{
*/
/**
* Verify SC68 file from stream.
*
* The file68_verify() function opens, reads and closes given file to
* determine if it is a valid SC68 file. This function only checks
* for a valid file header, and does not perform any consistent error
* checking.
*
* @param is input stream to verify
*
* @return error-code
* @retval 0 success, seems to be a valid SC68 file
* @retval <0 failure, file error or invalid SC68 file
*
* @see file68_load()
* @see file68_save()
* @see file68_diskname()
*/
int ;
/**
* Verify SC68 file.
*
* @param url URL to verify.
*/
int ;
/**
* Verify SC68 file mapped into memory buffer.
*
* @param buffer buffer address
* @param len buffer length
*/
int ;
/**
* Get SC68 disk name.
*
* The file68_diskname() function opens, reads and closes given file
* to determine if it is a valid SC68 file. In the same time it tries
* to retrieve the stored disk name into the dest buffer with a
* maximum length of max bytes. If the name overflows, the last byte
* of the dest buffer will be non zero.
*
* @param is input stream
* @param dest disk name destination buffer
* @param max number of bytes of dest buffer
*
* @return error-code
* @retval 0 success, found a disk-name
* @retval <0 failure, file error, invalid SC68 file or disk-name not found
*
* @see file68_load()
* @see file68_save()
* @see file68_diskname()
*
* @deprecated This function needs to be rewritten.
*/
int ;
/**
* Check if an URL is a standard sc68 one.
*
* @param url URL to check.
* @param exts extension list. (0 is default: ".sc68\0.sndh\0.snd\0").
* @param is_remote fill with 0/1 if respectevely URL is a local/remote
* file. May be 0.
* @return bool
* @retval 0 not compatible sc68 file
* @retval 1 sc68 compatible file
*/
int ;
/**
* @}
*/
/**
* @name File load functions.
* @{
*/
/**
* Load SC68 file from stream.
*
* The file68_load() function allocates memory and loads an SC68
* file. The function performs all necessary initializations in the
* returned disk68_t structure. A single buffer has been allocated
* including disk68_t structure followed by music data. It is user
* charge to free memory by calling file68_free() function.
*
* @param is input stream
*
* @return pointer to allocated disk68_t disk structure
* @retval 0 failure
*
* @see file68_verify()
* @see file68_save()
*/
disk68_t * ;
/**
* Load SC68 file.
*
* @param url URL to load.
*
* @return pointer to allocated disk68_t disk structure
* @retval 0 failure
*/
disk68_t * ;
/**
* Load SC68 file mapped into memory buffer.
*
* @param buffer buffer address
* @param len buffer length
*
* @return pointer to allocated disk68_t disk structure
* @retval 0 failure
*/
disk68_t * ;
/**
* @}
*/
/**
* @name File save functions.
* @{
*/
/**
* Save SC68 disk into stream.
*
* @param os output stream (must be seekable)
* @param mb pointer to SC68 disk to save
* @param version file version [0:default]
* @param gzip gzip compression level [0:no-gzip, 1..9 or -1]
*
* @return error-code
* @retval 0 success
* @retval <0 failure
*
* @see file68_load()
* @see file68_verify()
* @see file68_diskname()
*/
int ;
/**
* Save SC68 disk into file.
*
* @param url URL to save.
* @param mb pointer to SC68 disk to save
* @param version file version [0:default]
* @param gzip gzip compression level [0:no-gzip, 1..9 or -1]
*/
int ;
/**
* Save SC68 disk into memory buffer.
*
* @param buffer destination buffer.
* @param len size of destination buffer.
* @param mb pointer to SC68 disk to save
* @param version file version [0:default]
* @param gzip gzip compression level [0:no-gzip, 1..9 or -1]
*/
int ;
/**
* @}
*/
/**
* @name Memory allocation functions.
* @{
*/
/**
* Create fresh new disk.
*
* @param extra extra bytes to allocate
*
* @return a pointer to allocated disk
* @retval 0 failure
*
*/
disk68_t * ;
/**
* Destroy loaded or allocated disk.
*
* @param extra extra bytes to allocate
*
* @return a pointer to allocated disk
* @retval 0 failure
*
*
* @see file68_new()
* @see file68_load()
*/
void ;
/**
* @}
*/
/**
* @name Library functions.
* @{
*/
/**
* Get package version string.
*
* @return "file68 X.Y.Z"
*/
const char * ;
/**
* Get package version number.
*
* @return X*100+Y*10+Z
*/
int ;
/**
* Get identifier string.
* @param version 0:default 1:v1 2:v2
* @return a static string of the identifier
* @see SC68_IDSTR
* @see SC68_IDSTR_V2
*/
const char * ;
/**
* Get sc68 official (no IANA) mime type.
* @return a static string of the mimetype (should be audio/x-sc68).
*/
const char * ;
/**
* Initialize file68 library.
*
* @param argc argument count
* @param argv argument array (as for main())
* @return new argument count
*/
int ;
/**
* Shutdown file68 library.
*/
void ;
/**
* @}
*/
/**
* @}
*/
/* #ifndef _FILE68_FILE68_H_ */