Re: [go-nuts] Re: undefined: syscall.LoadLibrary

2016-06-24 Thread Konstantin Khomoutov
On Fri, 24 Jun 2016 03:22:23 -0700 (PDT) Andrew Mezoni wrote: > >> So, how exactly does this method work with Linux shared libraries? > > It does not work on Linux. > On Linux you should use the methods: > > dlclose, dlopen, dlmopen - open and close a shared object > > http://man7.org/linux/ma

[go-nuts] Re: undefined: syscall.LoadLibrary

2016-06-24 Thread Andrew Mezoni
>> So, how exactly does this method work with Linux shared libraries? It does not work on Linux. On Linux you should use the methods: dlclose, dlopen, dlmopen - open and close a shared object http://man7.org/linux/man-pages/man3/dlopen.3.html -- You received this message because you are subsc

[go-nuts] Re: undefined: syscall.LoadLibrary

2016-06-24 Thread Andrew Mezoni
>> But when I try this on linux I get: Linux does not have a `LoadLibrary` Also Linux does not have `kernel32.dll` and so on. P.S. The `LoadLibrary` also in `kernel32.dll` library which are only on Windows. https://msdn.microsoft.com/ru-ru/library/windows/desktop/ms684175(v=vs.85).aspx -- You r