Hacker News new | ask | show | jobs
by barpet 3554 days ago
I would appreciate blogs about Go being used in MS heavy environments. Interacting with windows dlls is still a black magic to me.
1 comments

Hi, i have a project in Go that interacts with a VC++ dll.

My approach was to wrap in extern C and use syscall.LoadLibrary() / syscall.GetProcAddress() as described on https://github.com/golang/go/wiki/WindowsDLLs . It was quite straightforward, i don't think there's enough information for a blog post.