search for: winmain

Displaying 20 results from an estimated 90 matches for "winmain".

Did you mean: winmail
2009 Apr 12
3
problem with DivX9 and winetricks
...0x144' repeated large number of times] err:setupapi:do_file_copyW Unsupported style(s) 0x144 Clearing Windows version back to default Executing wine regedit /home/mother/.wine/drive_c/winetrickstmp/unset-winver.reg Install of directx9 done winetricks done. mother at Mothership:~$ err:rundll32:WinMain Unable to load L"streamci" err:rundll32:WinMain Unable to load L"streamci" err:rundll32:WinMain Unable to load L"streamci" fixme:advapi:SetEntriesInAclA 1 0x33f79c (nil) 0x33f7d4 fixme:advapi:SetSecurityInfo stub err:rundll32:WinMain Unable to load L"streamci&quot...
2008 Jun 14
1
Porting with winelib - undefined reference to `WinMain'
...rials-programs/2956-zcpu-emulator.html) to Linux with winelib. This app is mainly console, but can draw some stuff using SDL. The problem is: compiles fine but when linking I get Code: /usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main': exe_main.c:(.text+0x9d): undefined reference to `WinMain' Yes, I've googled but none of found solutions hepled. Source at current state can be got here: http://silentman.org.ua/build.tar.gz (I use build.sh for compiling)
2005 Sep 09
2
Debugging R/Fortran in Windows
...s well, but a quick attempt suggested that the (MinGW g77) Fortran compiler I have installed on my Windows laptop works better on this Fortran code.) I'm trying to follow the instructions in the "Writing R Extensions" Manual: Start R under the debugger after setting a breakpoint for WinMain. gdb .../bin/Rgui.exe (gdb) break WinMain (gdb) run But when I run gdb on Rgui.exe, I get the message: "no debugging symbols found" and then when I try "break WinMain", I get: "No symbol table is loaded. use the 'file' command."...
2005 Sep 09
2
Debugging R/Fortran in Windows
...s well, but a quick attempt suggested that the (MinGW g77) Fortran compiler I have installed on my Windows laptop works better on this Fortran code.) I'm trying to follow the instructions in the "Writing R Extensions" Manual: Start R under the debugger after setting a breakpoint for WinMain. gdb .../bin/Rgui.exe (gdb) break WinMain (gdb) run But when I run gdb on Rgui.exe, I get the message: "no debugging symbols found" and then when I try "break WinMain", I get: "No symbol table is loaded. use the 'file' command."...
2005 Mar 18
2
Trouble debugging with gdb, R on Windows
...and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i686-pc-mingw32"... (gdb) break WinMain Breakpoint 1 at 0x401296: file ../graphapp/graphappmain.c, line 59. (gdb) run Starting program: y:\falcon\src\R-devel\src\gnuwin32/../../bin/Rgui.exe Breakpoint 1, WinMain (Instance=0x400000, PrevInstance=0x0, CmdLine=0x261f26 "", CmdShow=10) at ../graphapp/graphappmain.c:59 59...
2009 Sep 08
2
Can't configure wine anymore
When I type winecfg, I get all this > err:menubuilder:WinMain unknown option -a > err:menubuilder:WinMain unknown option -r > fixme:advapi:RegisterEventSourceW ((null),L"Print"): stub > fixme:winsock:convert_af_w2u unhandled Windows address family 26 > fixme:winsock:convert_af_w2u unhandled Windows address family 26 > fixme:winsock:co...
2001 Jun 30
3
winelib runs but wine ok.... Why??
...5.1 (for win exe) and under g++ with winlib. The problem is that the Builder EXE runs perfectly with WINE __BUT__ the library built with winlib does not run - spits out a segmentation faul @ line 400 (whatever that means) and some Error 139 with nothing else. All this happens before the app enters WinMain. Oh yes, under winedbg the g++ compiled app runs perfectly as well (except sometimes winedbg fails to start). I thought that winlib is the same as wine except for the loaded - could the loader be broken?? - Adam
2007 Sep 20
2
Search::Xapian cygwin fix
Olly, The cygwin linker requires -shared, otherwise WinMain at 16 will not be skipped. BTW: mingw also. But this should test and fix someone else. -- Reini Urban http://phpwiki.org/ http://murbreak.at/ http://spacemovie.mur.at/ http://helsinki.at/ -------------- next part -------------- A non-text attachment was scrubbed... Name: Search-Xa...
2009 Jul 27
4
Help testing regression
...;WIN87EM.DLL' required by 'IS20INST', error=2 I remember at that time, the installation worked just well. If I install the program with the current wine version, it goes fine, and if I try to start it, I get a very similar and frustrating error (the last one): Code: err:menubuilder:WinMain unknown option -a err:menubuilder:WinMain unknown option -r ALSA lib seq_hw.c:457:(snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory Could not load Mozilla. HTML rendering will be disabled. wine: configuration in '/home/mildred/.local/opt/wine/root' has been updated. ALSA...
2002 Aug 19
1
Crash while trying to Run atwin2k (Accuterm)
...r stub wine: Unhandled exception, starting debugger... Could not stat /mnt/fd0 (No such file or directory), ignoring drive A: Could not stat /mnt/fd0 (No such file or directory), ignoring drive A: fixme:console:SetConsoleCtrlHandler (0x4047fd10,1) - no error checking or testing yet err:wineconsole:WinMain WCUSER_InitBackend failed. err:win:WIN_FindWndPtr window 10021 belongs to other process err:win:WIN_FindWndPtr window 10021 belongs to other process [WIFEXITED(s) && WEXITSTATUS(s) == 0], 0, NULL) = 11335 wait4(-1, /usr/bin/wine: line 459: 11337 Terminated $WINEBIN/$WINE_BIN_N...
2010 Mar 28
15
frame/graphics lag in microsoft Freelancer
Huhu, I installed MS Freelancer via PlayOnLinux, but I have some graphics lags ingame/the game was redicoulus slow, I also wasn't really able to start a new game since the game hang up (kinda. It just didn't wanted to finish loading) One idea of me would be that it still runs in DX mode, how can I change it to OpenGL? On a side note, I have enough ressources to run the game at windows.
2003 May 20
1
building a Win32 DLL with R objects?
...reate a test dll that contains R objects (actually I simply copied the code from the "Writing R extensions") and got it to build the dll using rcmd shlib main.c (okay, it's simple, but effective). Here's the info so far: this is the contents of the main.c file (not there's no WinMain()). Do we put it in or does the script do it when we compile? /* this is a test for the r package to access r objects from a c lib */ #include "R.h" #include "Rdefines.h" SEXP test_function( SEXP a, SEXP b ) { int na; int nb; int nab; double *xa;...
2010 Jun 08
8
Cant get civ4 to run on ubuntu 10.04, wine 1.1.42
...i:WTSRegisterSessionNotification Stub 0x10054 0x00000000 fixme:cursor:CURSORICON_CreateIconFromANI Loading all frames for .ani cursors not implemented. err:menubuilder:Process_Link unable to load L"C:\\Program Files\\Firaxis Games\\Sid Meier's Civilization 4\\Logs.lnk" err:menubuilder:WinMain failed to build menu item for C:\Program Files\Firaxis Games\Sid Meier's Civilization 4\Logs.lnk err:menubuilder:Process_Link unable to load L"C:\\Program Files\\Firaxis Games\\Sid Meier's Civilization 4\\CivilizationIV.ini.lnk" err:menubuilder:Process_Link unable to load L"C...
2010 May 24
1
problems running 123di
Hello, Wine users! I am having trouble making 123di work under wine. (123di is an interactive "ebook" about photography and a demo version of the software can be downloaded from 123di.com for free) I have tried different versions of wine including 1.2rc1. It crashes on 1.2rc1. On the stable version of wine it doesn't crash but I get a browser window with the message "page not
2011 May 14
7
Toribash 3.91
...r some reason, Toribash 3.91 just doesn't start at all. I tried it on Winebottler on OSX, and that version functioned fine. Install goes along normally. When I click on the exe that starts the game, though, it simply doesn't start. Doing it from terminal gives me this: err:menubuilder:WinMain unknown option -a err:menubuilder:WinMain unknown option -r fixme:mixer:ALSA_MixerInit No master control found on HDA NVidia, disabling mixer fixme:mixer:ALSA_MixerInit No master control found on AK5370, disabling mixer I've got the latest wine, not sure what the problem could even...
2001 Nov 26
0
debugging R-devel on WinNT (was RE: zlib location)
...arantee even that. I had been trying to find out why La.svd on moderately large matrices (say 500 x 100) crash R-devel linked against ATLAS on WinNT. Could some one provide some hint on how to go about doing this? I tried the instruction in rw-faq, but keep getting stuck as follows: (gdb) break WinMain Breakpoint 1 at 0x4013c6: file ../graphapp/graphappmain.c, line 94. (gdb) run "/cygdrive/c/WINNT/system32/KERNEL32.dll": error reading line numbers "/cygdrive/c/WINNT/system32/ADVAPI32.dll": error reading line numbers "/cygdrive/c/WINNT/system32/VERSION.dll": error...
2004 Oct 25
0
Gigasampler LE - unhandled exception during installation
...ash mark $ winecfg err:psdrv:PSDRV_FindPrinterInfo Error 2 getting PPD file name for printer 'C62' fixme:winspool:AddPrinterW DocumentPropertiesW on printer 'L"C62"' fails err:psdrv:PSDRV_FindPrinterInfo Error 2 getting PPD file name for printer 'C62' fixme:winecfg:WinMain The winecfg tool is not yet complete, and does not actually alter your configuration. fixme:winecfg:WinMain If you want to alter the way Wine works, look in the ~/.wine/config file for more information. flash mark $ cd .wine/dosdevices/ flash dosdevices $ ls c: z: flash dosdevices $ ln -s /mnt/cdr...
2001 Aug 13
1
WineLib Linker Error?
...etStartupInfoA' /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) { extern int __wine_get_main_args( char ***argv ); STARTUPINFOA info; LPSTR cmdline = GetCommandLineA(); while (*cmdline && *cmdline != ' ') cmdline++; if (*cmdline) cmdline++; GetStart...
2004 Oct 29
1
problem building an R package under Windows XP with calls to NAG C routines
...nrecognized Warning: .drectve `%.*s' unrecognized Warning: .drectve `%.*s' unrecognized Warning: .drectve `%.*s' unrecognized Warning: .drectve `%.*s' unrecognized Warning: .drectve `%.*s' unrecognized /mingw/lib/libmingw32.a(main.o)(.text+0x106):main.c: undefined reference to `WinMain at 16' make[3]: *** [test.dll] Error 1 make[2]: *** [srcDynlib] Error 2 make[1]: *** [all] Error 2 make: *** [pkg-test] Error 2 *** Installation of test failed *** Removing 'C:/R/rw2000/library/test' Restoring previous 'C:/R/rw2000/library/test' Interestingly enough, if I rem...
2011 May 05
2
Compiling a FORTRAN program under Windows 7
...---------------------- When I compile it with gfortran I get the following error: -------------------------------------------------- c:\MinGW\programs>gfortran testit.f -o testit.o c:/mingw/bin/../lib/gcc/mingw32/4.5.2/../../../libmingw32.a(main.o):main.c:(.tex t+0xd2): undefined reference to `WinMain@16' collect2: ld returned 1 exit status. ---------------------------------------------------- I should add that a program like the following hello.f compiles with no problem. ------------------------------------------ READ (*, *) YOURNAME WRITE (*, 200) YOURNAME 200 FOR...