Convert the given memory into a hex string with every byte represented by two hexidecimal characters.
string GetHexDump( const LPVOID lpcMemory, int nSize, BOOL bAddGap = TRUE )
the string for the hex dump.
EX1
void GetHexDump_ex1() { char szTemp[10] = "A\t\r\n"; string strDump = GetHexDump(szTemp, 4); out_str(strDump); }
origin.h