Skip to content

Commit

Permalink
Merge pull request #525 from m-tmatma/feature/proto-CCodeBase
Browse files Browse the repository at this point in the history
ヘッダのプロトタイプ宣言で明示的に変数名を指定する (CCodeBase)
  • Loading branch information
beru authored Oct 7, 2018
2 parents 4c0912b + 1224965 commit f7fbe34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sakura_core/charset/CCodeBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ class CCodeBase{
virtual EConvertResult UnicodeToHex(const wchar_t* cSrc, const int iSLen, TCHAR* pDst, const CommonSetting_Statusbar* psStatusbar); //!< UNICODE → Hex 変換

// 変換エラー処理(1バイト <-> U+D800 から U+D8FF)
static int BinToText( const unsigned char*, const int, unsigned short* );
static int TextToBin( const unsigned short );
static int BinToText(const unsigned char *pSrc, const int nLen, unsigned short *pDst);
static int TextToBin(const unsigned short cSrc);

// MIME Header デコーダ
static bool MIMEHeaderDecode( const char*, const int, CMemory*, const ECodeType );
static bool MIMEHeaderDecode(const char* pSrc, const int nSrcLen, CMemory* pcMem, const ECodeType eCodetype);

// CShiftJisより移動 2010/6/13 Uchi
static void S_GetEol(CMemory* pcmemEol, EEolType eEolType); //!< 改行データ取得
Expand Down

0 comments on commit f7fbe34

Please sign in to comment.