MCPcopy Create free account
hub / github.com/andlabs/ui / OpenFile

Function OpenFile

stddialogs.go:17–24  ·  view source on GitHub ↗
(w *Window)

Source from the content-addressed store, hash-verified

15}
16
17func 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
26func SaveFile(w *Window) string {
27 cname := C.uiSaveFile(w.w)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected