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