コード例 #1
0
ファイル: dllinterop.go プロジェクト: kity-xu/xuxiaodong
//卸载dll
func UnloadDll(dll *syscall.DLL) {
	if dll != nil {
		dll.Release()
	}
}