|
From: Daniel A. <dan...@gm...> - 2005-01-18 01:43:37
|
I'm experiencing a problem using the MonitorFromPoint function from mingw. Here is the output gcc.exe -O2 -Wall -mno-cygwin -mms-bitfields -g -DWINVER=0x0500 -I. -I../../../../win32-dev/gtk_2_0/include -I../../../../win32-dev/gtk_2_0/include/gtk-2.0 -I../../../../win32-dev/gtk_2_0/include/glib-2.0 -I../../../../win32-dev/gtk_2_0/include/pango-1.0 -I../../../../win32-dev/gtk_2_0/include/atk-1.0 -I../../../../win32-dev/gtk_2_0/lib/glib-2.0/include -I.. /../../../win32-dev/gtk_2_0/lib/gtk-2.0/include -I../../../src -I../../../src/win32 -I../../.. -o gtkappbar.o -c gtkappbar.c gcc.exe -shared winprefs.o gtkappbar.o -L../../../../win32-dev/gtk_2_0/lib -L../../../src -lgtk-win32-2.0 -lglib-2.0 -lgdk-win32-2.0 -lgmodule-2.0 -lgobject-2.0 -lws2_32 -lintl -lgaim -Wl,--enable-auto-image-base -o winprefs.dll gtkappbar.o(.text+0x37b): In function `wnd_moving': e:/devel/gaim-devel/gaim/plugins/win32/winprefs/gtkappbar.c:182: undefined reference to `MonitorFromPoint@12' make: *** [winprefs.dll] Error 1 It seems that the ordinal is somehow funky - the user32.def file in the lists the MonitorFromPoint@8 I can get MonitorFromRect and MonitorFromWindow to work, so that gives me the impression that i'm not doing this all wrong. Does anyone have any ideas? Thanks, Daniel |