Ignore:
Timestamp:
06/18/11 14:28:43 (13 years ago)
Author:
r2d
Message:

patch by Markus Peloquin <markus@…> :
Fixed the copious memory leaks in libcuefile and changed the headers
so C++ could use it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcuefile/trunk/include/cuetools/cuefile.h

    r416 r469  
    66 */
    77
     8#ifndef CUEFILE_H
     9#define CUEFILE_H
     10
    811#include "cd.h"
    912
     
    1215typedef struct Cue Cue;
    1316
     17#ifdef __cplusplus
     18extern "C" {
     19#endif
     20
    1421Cd *cf_parse (char *fname, int *format);
    1522int cf_print (char *fname, int *format, Cd *cue);
    1623int cf_format_from_suffix (char *fname);
     24
     25#ifdef __cplusplus
     26}
     27#endif
     28
     29#endif
Note: See TracChangeset for help on using the changeset viewer.