mirror of
https://github.com/Artikash/Textractor.git
synced 2024-12-23 17:04:12 +08:00
15 lines
394 B
C++
15 lines
394 B
C++
#pragma once
|
||
|
||
#include "../texthook/host.h"
|
||
|
||
using namespace System;
|
||
|
||
namespace HostInterop
|
||
{
|
||
public ref class Host
|
||
{
|
||
public:
|
||
static bool Start() { return StartHost(); }
|
||
};
|
||
}
|