2021-01-15 21:07:23 +08:00
|
|
|
#include "qtcommon.h"
|
2020-10-14 08:37:03 +08:00
|
|
|
#include "network.h"
|
|
|
|
|
2021-01-15 21:07:23 +08:00
|
|
|
namespace DevTools
|
|
|
|
{
|
2021-06-07 12:43:40 +08:00
|
|
|
void Initialize();
|
2021-01-15 21:07:23 +08:00
|
|
|
void Close();
|
|
|
|
bool Connected();
|
2021-03-10 12:32:56 +08:00
|
|
|
JSON::Value<wchar_t> SendRequest(const char* method, const std::wstring& params = L"{}");
|
2021-01-15 21:07:23 +08:00
|
|
|
}
|