From: Алекс П. <ass...@ma...> - 2008-04-24 18:30:18
|
Hi, everyone! I found this lib just recently, and unfortunately for me, all my program is made under vs2005. I managed to link prebuild lib files for WinCE, and now sample1.c runs fine for me on mobile 2003 device (well, with few exceptions). But, sample2.c outputs this error: error LNK2019: unresolved external symbol mpeg2convert_rgb24 referenced in function "void __cdecl sample6(void *)" (?sample6@@YAXPAX@Z) There was more of such errors before for #include "mpeg2.h" , but I fixed them this way: extern "C" { #include <inttypes.h> #include "mpeg2.h" #include "mpeg2convert.h" } The same solution is not working for mpeg2convert.h , so I can not use mpeg2convert_rgb24 function at all. Maybe someone can point me into something clever? 0_0 Regards, Konstantin. |