Leaked source code of windows server 2003
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.

21 lines
433 B

  1. #define SCORE_NONE 0
  2. #define SCORE_MINOR 1
  3. #define SCORE_MAJOR 2
  4. class CIncdKorean : public CINetCodeDetector
  5. {
  6. private:
  7. enum {NO_ESC, sESC, sESC_1, sESC_2 } m_nEscMode;
  8. BOOL m_bFindDesigator;
  9. INT m_nCharCount;
  10. public:
  11. CIncdKorean();
  12. ~CIncdKorean() {}
  13. protected:
  14. virtual BOOL DetectChar(UCHAR tc);
  15. virtual BOOL CleanUp() {return FALSE;}
  16. virtual int GetDetectedCodeSet();
  17. };