windows-nt/Source/XPSP1/NT/shell/ext/mlang/detcbase.h

14 lines
264 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
class CINetCodeDetector
{
public:
CINetCodeDetector() {}
virtual ~CINetCodeDetector() {}
int DetectStringA(LPCSTR lpSrcStr, int cchSrc);
protected:
virtual BOOL DetectChar(UCHAR tc) = 0;
virtual BOOL CleanUp() = 0;
virtual int GetDetectedCodeSet() = 0;
};