1
0
Fork 0

GUI: Added function that allows conversion to dword string

This commit is contained in:
morsisko 2021-07-18 20:32:37 +02:00
parent 4176de66c7
commit cd30562222
1 changed files with 7 additions and 0 deletions

View File

@ -70,6 +70,13 @@ inline QString ToWordString(unsigned short Value)
return QString(temp);
}
inline QString ToDwordString(unsigned int Value)
{
char temp[16];
sprintf_s(temp, "%08X", Value);
return QString(temp);
}
template<typename T>
inline QString ToFloatingString(const void* buffer, int precision)
{