Пример #1
0
void GM_PrHex(int data, int len)
{
    char str[10];

    Bin32ToHex(data,str,len);
    GM_PrStr(str);
}
Пример #2
0
bool PacketDataProxy::Bin32ToHex(const signed long i_dword, std::vector<BYTE>& o_hex_number)
{
 return Bin32ToHex((const unsigned long)i_dword, o_hex_number);
}