Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
227 B

  1. #ifndef _RULE_LEXICON_H_
  2. #define _RULE_LEXICON_H_
  3. class CRuleLexicon {
  4. public:
  5. CRuleLexicon();
  6. ~CRuleLexicon();
  7. BOOL IsAWord(LPCWSTR lpsString, INT nLength);
  8. };
  9. typedef CRuleLexicon *PCRuleLexicon;
  10. #else
  11. #endif