123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #pragma once
- #include <windows.h>
- #include <string>
- #include <sys/types.h>
- #include "NavicatCrypto.hpp"
- #undef __BASE_FILE__
- #define __BASE_FILE__ "Helper.hpp"
- namespace Helper {
- extern Navicat11Crypto NavicatCipher;
- //
- // Print memory data in [from, to) at least
- // If `base` is not nullptr, print address as offset. Otherwise, as absolute address.
- // NOTICE:
- // `base` must <= `from`
- //
- void PrintMemory(const void* from, const void* to, const void* base = nullptr);
- void PrintSomeBytes(const void* p, size_t s);
- template<typename _Type, bool _Ascending = true>
- void QuickSort(_Type* pArray, off_t begin, off_t end) {
- if (end - begin <= 1)
- return;
- off_t i = begin;
- off_t j = end - 1;
- _Type seperator = static_cast<_Type&&>(pArray[begin]);
- while (i < j) {
- if (_Ascending) {
- while (i < j && seperator <= pArray[j])
- --j;
- if (i < j)
- pArray[i++] = static_cast<_Type&&>(pArray[j]);
- while (i < j && pArray[i] <= seperator)
- ++i;
- if (i < j)
- pArray[j--] = static_cast<_Type&&>(pArray[i]);
- } else {
- while (i < j && seperator >= pArray[j])
- --j;
- if (i < j)
- pArray[i++] = static_cast<_Type&&>(pArray[j]);
- while (i < j && pArray[i] >= seperator)
- ++i;
- if (i < j)
- pArray[j--] = static_cast<_Type&&>(pArray[i]);
- }
- }
- pArray[i] = static_cast<_Type&&>(seperator);
- QuickSort<_Type, _Ascending>(pArray, begin, i);
- QuickSort<_Type, _Ascending>(pArray, i + 1, end);
- }
- std::string ConvertToUTF8(PCSTR From, DWORD CodePage = CP_ACP);
- std::string ConvertToUTF8(PCWSTR From);
- bool IsPrintable(const uint8_t* p, size_t s);
- void ReplaceSubString(std::string& Str,
- const std::string& OldSubStr,
- const std::string& NewSubStr);
- }
|