This is my soures code ,i am geting value please help me whether the output is correct or not .
package main
import(
"syscall"
"fmt"
)
func main(){
user32 := syscall.MustLoadDLL("kernel32.dll")
getTickCount := user32.MustFindProc("GetTickCount")
fmt.Printf("%T\n",getTickCount)
fmt.Println(getTickCount)
fmt.Println(getTickCount.Name)
//fmt.Println(getTickCount.addr)
}
===============================MY OUTPUT IS ======================================================================
*syscall.Proc
&{0xc0820046a0 GetTickCount 140735246786720}
GetTickCount
=================================================================================================================
This is my soures code ,i am geting value please help me whether the output is correct or not .