the procedure entry point OleInitialize could not be located in the dynamic link library libglib-2.0.0.dll

Dan Kegel dank at kegel.com
Mon Nov 11 09:33:33 PST 2013


On Mon, Nov 11, 2013 at 8:14 AM, Hugo MACHEFER <hugo.machefer at gmail.com> wrote:
> I used MinGW to build *glib* as DLL and DLL.A files for Windows.
> Then, I converted "manually" .DLL.A file into .LIB this way:
>  objconv.exe libglib-2.0.dll.a libglib.lib

See http://www.mingw.org/wiki/MSVC_and_MinGW_DLLs

Maybe you wanted to generate a .def with
  gcc ...  -Wl,--output-def,libglib-2.0.def
 and then convert the .def to a .lib with
  lib /machine:i386 /def:libglib-2.0.def

I can't help but think someone's already done this somewhere...
Were you following https://git.gnome.org/browse/glib/tree/README.win32 ?
- Dan


More information about the gstreamer-devel mailing list