11 lines
290 B
C++
11 lines
290 B
C++
#include "qtcommon.h"
|
|
#include "network.h"
|
|
|
|
namespace DevTools
|
|
{
|
|
void Start(const std::wstring& path, std::function<void(QString)> statusChanged, bool headless);
|
|
void Close();
|
|
bool Connected();
|
|
JSON::Value<wchar_t> SendRequest(const char* method, const std::wstring& params = L"{}");
|
|
}
|