使用go或cgo在.exe中检测目录中缺少的dll

Is there any way to detect missing dll in directory with exe? For example im using cgo:

#cgo windows CFLAGS: -I..//..//include

#cgo windows LDFLAGS: -L..//..//lib -llibzmq-v120-mt-4_0_4

It compile good, but when i try to run program without this dll in the same folders nothing happen. The program doesn't start and nothing is shown (either the information about missing dll)

Can I handle missing dll using go or cgo?