Textractor/extensions/devtools.h

11 lines
298 B
C
Raw Normal View History

#include "qtcommon.h"
#include "network.h"
namespace DevTools
{
2021-01-15 09:32:23 -07:00
void Start(const std::wstring& path, std::function<void(QString)> statusChanged, bool headless);
void Close();
bool Connected();
JSON::Value<wchar_t> SendRequest(const std::wstring& method, const std::wstring& params = L"{}");
}