2025-04-27 07:49:33 -04:00

16 lines
242 B
C++

#ifndef _RULE_LEXICON_H_
#define _RULE_LEXICON_H_
class CRuleLexicon {
public:
CRuleLexicon();
~CRuleLexicon();
BOOL IsAWord(LPCWSTR lpsString, INT nLength);
};
typedef CRuleLexicon *PCRuleLexicon;
#else
#endif