mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 02:15:32 +00:00
36 lines
832 B
C++
36 lines
832 B
C++
|
|
#ifndef _NAMEDCODECONSTANTS_H
|
|
#define _NAMEDCODECONSTANTS_H
|
|
|
|
#define MAX_ENAME 128
|
|
#define ALLOC_SIZE 256
|
|
|
|
struct NCCENTRY
|
|
{
|
|
wchar_t name[MAX_ENAME+1];
|
|
int code;
|
|
DWORD storeIndex;
|
|
};
|
|
|
|
class NamedCodeConstants
|
|
{
|
|
private:
|
|
NCCENTRY *entries; // entries from &includecodes
|
|
NCCENTRY *entries_file; // entries from store(myconst) x
|
|
int nEntries, nEntries_file;
|
|
int chrindexes[128]; // A-Z, 0-9, -, _; simple index
|
|
|
|
int GetCode_IncludedCodes(const wchar_t *codename);
|
|
void AddCode_IncludedCodes(int n, const wchar_t *p);
|
|
BOOL IntLoadFile(const char *filename);
|
|
public:
|
|
NamedCodeConstants();
|
|
~NamedCodeConstants();
|
|
|
|
void reindex();
|
|
void AddCode(int n, const wchar_t *p, DWORD storeIndex);
|
|
BOOL LoadFile(const char *filename);
|
|
int GetCode(const wchar_t *codename, DWORD *storeIndex);
|
|
};
|
|
|
|
#endif //_NAMEDCODECONSTANTS_H
|