(w *Window)
| 24 | } |
| 25 | |
| 26 | func SaveFile(w *Window) string { |
| 27 | cname := C.uiSaveFile(w.w) |
| 28 | if cname == nil { |
| 29 | return "" |
| 30 | } |
| 31 | defer C.uiFreeText(cname) |
| 32 | return C.GoString(cname) |
| 33 | } |
| 34 | |
| 35 | func MsgBox(w *Window, title string, description string) { |
| 36 | ctitle := C.CString(title) |
nothing calls this directly
no outgoing calls
no test coverage detected