summaryrefslogtreecommitdiff
path: root/dialog_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-17 02:34:58 -0500
committerPietro Gagliardi <[email protected]>2014-02-17 02:34:58 -0500
commit316e5e9db4678d6b3fc545db6e8c54e23d6585e4 (patch)
tree179a5bfe8a00e001b82aea29f6fda370c873099f /dialog_windows.go
parent56923d0bdaf3b45e7000b245ff9a5b6138210c97 (diff)
Split out the dialog functions into portable and non-portable code to keep the package documentation in the portable code only.
Diffstat (limited to 'dialog_windows.go')
-rw-r--r--dialog_windows.go12
1 files changed, 5 insertions, 7 deletions
diff --git a/dialog_windows.go b/dialog_windows.go
index 6a01f1b..292f801 100644
--- a/dialog_windows.go
+++ b/dialog_windows.go
@@ -73,7 +73,7 @@ var (
_messageBox = user32.NewProc("MessageBoxW")
)
-func msgBox(lpText string, lpCaption string, uType uint32) (result int) {
+func _msgBox(lpText string, lpCaption string, uType uint32) (result int) {
r1, _, err := _messageBox.Call(
uintptr(_NULL),
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(lpText))),
@@ -85,13 +85,11 @@ func msgBox(lpText string, lpCaption string, uType uint32) (result int) {
return int(r1)
}
-// MsgBox displays an informational message box to the user with just an OK button.
-func MsgBox(title string, textfmt string, args ...interface{}) {
+func msgBox(title string, text string) {
// TODO add an icon?
- msgBox(fmt.Sprintf(textfmt, args...), title, _MB_OK)
+ _msgBox(text, title, _MB_OK)
}
-// MsgBoxError displays a message box to the user with just an OK button and an icon indicating an error.
-func MsgBoxError(title string, textfmt string, args ...interface{}) {
- msgBox(fmt.Sprintf(textfmt, args...), title, _MB_OK | _MB_ICONERROR)
+func msgBoxError(title string, text string) {
+ _msgBox(text, title, _MB_OK | _MB_ICONERROR)
}