mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-04 21:50:38 -04:00
18 lines
323 B
C
18 lines
323 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
typedef struct stringtable_struct_tag TSTRINGTABLE;
|
|
|
|
TSTRINGTABLE *stringtable_load(const char *filename);
|
|
|
|
const char *stringtable_find(const TSTRINGTABLE *st, int id, const char *default_value);
|
|
void stringtable_free(TSTRINGTABLE *st);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|