comparison sidlib.h @ 222:3a01518fffe0

Rename sidlib functions from si_* prefix to sidlib_*.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 27 Dec 2019 11:12:42 +0200
parents 8db9830e5d97
children a76276ff7ba8
comparison
equal deleted inserted replaced
221:8db9830e5d97 222:3a01518fffe0
98 98
99 99
100 // 100 //
101 // Functions 101 // Functions
102 // 102 //
103 BOOL si_read_sid_file(th_ioctx *ctx, PSIDHeader **ppsid, const BOOL newSLDB); 103 BOOL sidlib_read_sid_file(th_ioctx *ctx, PSIDHeader **ppsid, const BOOL newSLDB);
104 void si_free_sid_file(PSIDHeader *psid); 104 void sidlib_free_sid_file(PSIDHeader *psid);
105 105
106 const char * si_get_sid_clock_str(const int flags); 106 const char * sidlib_get_sid_clock_str(const int flags);
107 const char * si_get_sid_model_str(const int flags); 107 const char * sidlib_get_sid_model_str(const int flags);
108 108
109 SIDLibSLDB * si_sldb_new(void); 109 SIDLibSLDB * sidlib_sldb_new(void);
110 int si_sldb_read(th_ioctx *ctx, SIDLibSLDB *dbh); 110 int sidlib_sldb_read(th_ioctx *ctx, SIDLibSLDB *dbh);
111 int si_sldb_build_index(SIDLibSLDB *dbh); 111 int sidlib_sldb_build_index(SIDLibSLDB *dbh);
112 void si_sldb_free(SIDLibSLDB *dbh); 112 void sidlib_sldb_free(SIDLibSLDB *dbh);
113 SIDLibSLDBNode * si_sldb_get_by_hash(SIDLibSLDB *dbh, th_md5hash_t hash); 113 SIDLibSLDBNode * sidlib_sldb_get_by_hash(SIDLibSLDB *dbh, th_md5hash_t hash);
114 114
115 int si_sldb_read_bin(th_ioctx *ctx, SIDLibSLDB *dbh); 115 int sidlib_sldb_read_bin(th_ioctx *ctx, SIDLibSLDB *dbh);
116 int si_sldb_write_bin(th_ioctx *ctx, const SIDLibSLDB *dbh); 116 int sidlib_sldb_write_bin(th_ioctx *ctx, const SIDLibSLDB *dbh);
117 117
118 118
119 #ifdef __cplusplus 119 #ifdef __cplusplus
120 } 120 }
121 #endif 121 #endif