Klemens Friedl schrieb:
`_FT_Get_X11_Font_Format'
... is related to freetype, our freetype has only "FT_Get_X11_Font_Format" but none with leading underscore (ftxf86.c and ftxf86.h of freetype).
The underscore is always added. The problem is that our freetype.dll doesn't export FT_Get_X11_Font_Format. But there's another problem: our freetype dll is a kernel mode dll linking to ntoskrnl.exe, so even if you could link the app, it wouldn't work. So you would first need to compile freetype as a static lib.
Timo