TODO
(w *Window, title string, description string)
| 7 | |
| 8 | // TODO |
| 9 | func MsgBoxError(w *Window, title string, description string) { |
| 10 | ctitle := C.CString(title) |
| 11 | defer freestr(ctitle) |
| 12 | cdescription := C.CString(description) |
| 13 | defer freestr(cdescription) |
| 14 | C.uiMsgBoxError(w.w, ctitle, cdescription) |
| 15 | } |
| 16 | |
| 17 | func OpenFile(w *Window) string { |
| 18 | cname := C.uiOpenFile(w.w) |