An open API service indexing awesome lists of open source software.

https://github.com/tkmax777/kiritan_handler

東北きりたんのGUIをGoから制御するもの。
https://github.com/tkmax777/kiritan_handler

Last synced: 3 months ago
JSON representation

東北きりたんのGUIをGoから制御するもの。

Awesome Lists containing this project

README

        

# KIRITAN Handler
## 概要
東北きりたんのGUIの一部をGoから制御するライブラリ。

## 仕組み
Win32APIで適当にGUIを操作しているだけ。

## Usage

```go
import "github.com/TKMAX777/kiritan_handler"

func main() {
kiritan, err := kiritan_handler.New()
if err != nil {
panic(err)
}

kiritan.SetText("ほげほげ")
kiritan.Play()
}

```