Hi List, I would like to use the FIXME macro in my piece of code. I found out that this macro is declared in "include/wine/debug" and my code compile's well, but I got an error at link time. The error message is: undefined reference to 'FIXME'. I think I should link a library to the code. But I don't find which.
Could somebody help with that library's name?
Thanks, Attila
On February 14, 2004 08:50 am, Zimler Attila wrote:
Could somebody help with that library's name?
The problem is that you're in an application, and unfortunately things work differently there. Just use WINE_FIXME() instead.
On Sat, 14 Feb 2004, Dimitrie O. Paun wrote:
On February 14, 2004 08:50 am, Zimler Attila wrote:
Could somebody help with that library's name?
The problem is that you're in an application, and unfortunately things work differently there. Just use WINE_FIXME() instead.
I would rather say that *fortunately* things are different for Winelib applications: defining TRACE, ERR and FIXME macros in Winelib like we do in Wine would generate tons of conflicts, starting with the MFC TRACE macro for instance.