(w *Window)
| 15 | } |
| 16 | |
| 17 | func OpenFile(w *Window) string { |
| 18 | cname := C.uiOpenFile(w.w) |
| 19 | if cname == nil { |
| 20 | return "" |
| 21 | } |
| 22 | defer C.uiFreeText(cname) |
| 23 | return C.GoString(cname) |
| 24 | } |
| 25 | |
| 26 | func SaveFile(w *Window) string { |
| 27 | cname := C.uiSaveFile(w.w) |
nothing calls this directly
no outgoing calls
no test coverage detected