Codebase list ruby-fxruby / 867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2a fox-includes / FXCP856Codec.h
867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2a

Tree @867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

FXCP856Codec.h @867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2araw · history · blame

#ifndef FXCP856CODEC_H
#define FXCP856CODEC_H

#ifndef FXTEXTCODEC_H
#include "FXTextCodec.h"
#endif

namespace FX {

/// CP856 Codec
class FXAPI FXCP856Codec : public FXTextCodec {
  FXDECLARE(FXCP856Codec)
public:
  FXCP856Codec(){}
  virtual FXint mb2wc(FXwchar& wc,const FXchar* src,FXint nsrc) const;
  virtual FXint wc2mb(FXchar* dst,FXint ndst,FXwchar wc) const;
  virtual FXint mibEnum() const;
  virtual const FXchar* name() const;
  virtual const FXchar* mimeName() const;
  virtual const FXchar* const* aliases() const;
  virtual ~FXCP856Codec(){}
  };

}

#endif