package main import ( "fmt" "syscall" "time" "unsafe" ) const ( MB_OK = 0x00000000 MB_OKCANCEL = 0x00000001 MB_ABORTRETRYIGNORE = 0x00000002 MB_YESNOCANCEL = 0x00000003 MB_YESNO = 0x00000004 MB_RETRYCANCEL = 0x00000005 MB_CANCELTRYCONTINUE = 0x00000006 MB_ICONHAND = 0x00000010 MB_ICONQUESTION = 0x00000020 MB_ICONEXCLAMATION = 0x00000030 MB_ICONASTERISK = 0x00000040 MB_USERICON = 0x00000080 MB_ICONWARNING = MB_ICONEXCLAMATION MB_ICONERROR = MB_ICONHAND MB_ICONINFORMATION = MB_ICONASTERISK MB_ICONSTOP = MB_ICONHAND MB_DEFBUTTON1 = 0x00000000 MB_DEFBUTTON2 = 0x00000100 MB_DEFBUTTON3 = 0x00000200 MB_DEFBUTTON4 = 0x00000300 ) func abort(funcname string, err syscall.Errno) { panic(funcname + " failed: " + err.Error()) } var ( // kernel32, _ = syscall.LoadLibrary("kernel32.dll") // getModuleHandle, _ = syscall.GetProcAddress(kernel32, "GetModuleHandleW") user32, _ = syscall.LoadLibrary("user32.dll") messageBox, _ = syscall.GetProcAddress(user32, "MessageBoxW") ) func IntPtr(n int) uintptr { return uintptr(n) } func StrPtr(s string) uintptr { return uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(s))) } func MessageBox(caption, text string, style uintptr) (result int) { ret, _, callErr := syscall.Syscall9(messageBox, 4, 0, StrPtr(text), StrPtr(caption), style, 0, 0, 0, 0, 0) if callErr != 0 { abort("Call MessageBox", callErr) } result = int(ret) return } //func GetModuleHandle() (handle uintptr) { // if ret, _, callErr := syscall.Syscall(getModuleHandle, 0, 0, 0, 0); callErr != 0 { // abort("Call GetModuleHandle", callErr) // } else { // handle = ret // } // return //} // windows下的第二種DLL方法調(diào)用 func ShowMessage2(title, text string) { user32 := syscall.NewLazyDLL("user32.dll") MessageBoxW := user32.NewProc("MessageBoxW") MessageBoxW.Call(IntPtr(0), StrPtr(text), StrPtr(title), IntPtr(0)) } func main() { // defer syscall.FreeLibrary(kernel32) defer syscall.FreeLibrary(user32) //fmt.Printf("Retern: %d\n", MessageBox("Done Title", "This test is Done.", MB_YESNOCANCEL)) num := MessageBox("Done Title", "This test is Done.", MB_YESNOCANCEL) fmt.Printf("Get Retrun Value Before MessageBox Invoked: %d\n", num) ShowMessage2("windows下的第二種DLL方法調(diào)用", "HELLO !") time.Sleep(3 * time.Second) } func init() { fmt.Print("Starting Up\n") }
補(bǔ)充:go 調(diào)用windows dll 的三種方法
第三種方法是從Go\src\internal\syscall\windows\sysdll源碼中找到的,三種方法的具體區(qū)別還不是很明晰,
初步判斷:lazy應(yīng)該是相當(dāng)于動態(tài)庫,其余兩種直接把庫加載到內(nèi)存。
package main import( "fmt" "syscall" "time" "unsafe" ) const ( MB_OK = 0x00000000 MB_OKCANCEL = 0x00000001 MB_ABORTRETRYIGNORE = 0x00000002 MB_YESNOCANCEL = 0x00000003 MB_YESNO = 0x00000004 MB_RETRYCANCEL = 0x00000005 MB_CANCELTRYCONTINUE = 0x00000006 MB_ICONHAND = 0x00000010 MB_ICONQUESTION = 0x00000020 MB_ICONEXCLAMATION = 0x00000030 MB_ICONASTERISK = 0x00000040 MB_USERICON = 0x00000080 MB_ICONWARNING = MB_ICONEXCLAMATION MB_ICONERROR = MB_ICONHAND MB_ICONINFORMATION = MB_ICONASTERISK MB_ICONSTOP = MB_ICONHAND MB_DEFBUTTON1 = 0x00000000 MB_DEFBUTTON2 = 0x00000100 MB_DEFBUTTON3 = 0x00000200 MB_DEFBUTTON4 = 0x00000300 ) func abort(funcname string, err syscall.Errno) { panic(funcname + " failed: " + err.Error()) } var ( user32, _ = syscall.LoadLibrary("user32.dll") messageBox, _ = syscall.GetProcAddress(user32, "MessageBoxW") ) func IntPtr(n int) uintptr { return uintptr(n) } func StrPtr(s string) uintptr { return uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(s))) } func MessageBox(caption, text string, style uintptr) (result int) { ret, _, callErr := syscall.Syscall9(messageBox, 4, 0, StrPtr(text), StrPtr(caption), style, 0, 0, 0, 0, 0) if callErr != 0 { abort("Call MessageBox", callErr) } result = int(ret) return } //func GetModuleHandle() (handle uintptr) { // if ret, _, callErr := syscall.Syscall(getModuleHandle, 0, 0, 0, 0); callErr != 0 { // abort("Call GetModuleHandle", callErr) // } else { // handle = ret // } // return //} // windows下的第二種DLL方法調(diào)用 func ShowMessage2(title, text string) { user32 := syscall.NewLazyDLL("user32.dll") MessageBoxW := user32.NewProc("MessageBoxW") MessageBoxW.Call(IntPtr(0), StrPtr(text), StrPtr(title), IntPtr(0)) } // windows下的第三種DLL方法調(diào)用 func ShowMessage3(title, text string) { user32,_ := syscall.LoadDLL("user32.dll") MessageBoxW,_ := user32.FindProc("MessageBoxW") MessageBoxW.Call(IntPtr(0), StrPtr(text), StrPtr(title), IntPtr(0)) } func main() { defer syscall.FreeLibrary(user32) num := MessageBox("Done Title", "This test is Done.", MB_YESNOCANCEL) fmt.Printf("Get Retrun Value Before MessageBox Invoked: %d\n", num) ShowMessage2("windows下的另一種DLL方法調(diào)用", "HELLO !") ShowMessage3("windows下的第三種DLL方法調(diào)用", "lyslyslys !") time.Sleep(3 * time.Second) } func init() { fmt.Print("Starting Up\n") }
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
標(biāo)簽:欽州 銅川 吐魯番 重慶 梅河口 汕頭 蘭州 雞西
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Golang如何調(diào)用windows下的dll動態(tài)庫中的函數(shù)》,本文關(guān)鍵詞 Golang,如何,調(diào)用,windows,下的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。