13 lines
186 B
C
13 lines
186 B
C
#ifndef STRINGTABLESH_H
|
|
#define STRINGTABLESH_H
|
|
|
|
struct StringTable
|
|
{
|
|
const char *name;
|
|
int columnCount;
|
|
int rowCount;
|
|
const char **values;
|
|
};
|
|
|
|
#endif // STRINGTABLESH_H
|