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

Function MsgBoxError

stddialogs.go:9–15  ·  view source on GitHub ↗

TODO

(w *Window, title string, description string)

Source from the content-addressed store, hash-verified

7
8// TODO
9func 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
17func OpenFile(w *Window) string {
18 cname := C.uiOpenFile(w.w)

Callers

nothing calls this directly

Calls 1

freestrFunction · 0.85

Tested by

no test coverage detected