Displaying 1 result from an estimated 1 matches for "__wine_get_main_args".
2001 Aug 13
1
WineLib Linker Error?
...-L../clib -L../xlib -L../apollo -lilib -lclib -lxlib
-lapollo
test.spec.o: In function `__wine_exe_main':
/test/test.spec.c:68: undefined reference to `GetCommandLineA'
/test/test.spec.c:71: undefined reference to `GetStartupInfoA'
/test/test.spec.c:73: undefined reference to `__wine_get_main_args'
/test/test.spec.c:74: undefined reference to `ExitProcess'
and this is the part of the test.spec.c file that was produced:
#include <winbase.h>
int _ARGC;
char **_ARGV;
extern int __stdcall WinMain(HINSTANCE,HINSTANCE,LPSTR,INT);
static void __wine_exe_main(void)
{
exte...