设置窗口标题 - DrawGuiSetWindowTitle
函数简介
设置窗口对象的标题文本。
接口名称
DrawGuiSetWindowTitle
DLL调用
int32_t DrawGuiSetWindowTitle(int64_t instance, int64_t handle, char* title);
参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| instance | 长整数型 | OLAPlug对象的指针,由 CreateCOLAPlugInterFace 接口生成。 |
| handle | 长整数型 | 窗口句柄。 |
| title | 字符串 | 标题文本。 |
示例
DrawGuiSetWindowTitle(ola, win, "Demo Window");
返回值
0 失败,1 成功。
