http://bugs.winehq.com/show_bug.cgi?id=961
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-09-19 13:22 -------
verified dupe ;)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=961>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
------- Additional Comments From oscar.valdez(a)plastipak.com.sv 2002-09-18 18:13 -------
When imitating Win9x and thus causing the unhandled exception, the debugger and
it's bt command report:
> Unhandled exception: page fault on read access to 0x0000000 in 32-bit code
(0x0c0b4ce6)
> In 32-bit mode
> 0x0c0b4ce6 (VFP6R.DLL.DllWinMain+0x5e1e9 in C:\WINDOWS\SYSTEM\VFP6R.DLL): movl
0x0(%eax),%eax
> Wine-dbg>bt
> Backtrace:
> 0 0x0c0b4ce6 (VFP6R.DLL.DllWinMain+0x5e1e9 in C:\WINDOWS\SYSTEM\VFP6R.DLL)
(ebp=405d664c)
> 1 0x0c0f162e (VFP6R.DLL.DllOleInit+0x.6b8f in C:\WINDOWS\SYSTEM\VFP6R.DLL)
(ebp=0000100f)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1031
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |apa3a(a)yahoo.com
Status|NEW |ASSIGNED
------- Additional Comments From apa3a(a)yahoo.com 2002-09-18 07:46 -------
I'll look into this later unless nobody fixes it by then.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1031>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1031
Summary: System Parameters 'wallpaper' test fails
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: spetreolle(a)yahoo.fr
If you set the wallpaper using the control panel to semthing else
than "no wallpaper", which is the common configuration, it will show that the
SystemParametersInfoA fails.
As this moment no one notified this as the test tries to set the wallpaper to
the "" value. An improvement to the test could be trying to set a non-empty value.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1031>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=529
------- Additional Comments From Steven_Ed4153(a)yahoo.com 2002-09-17 18:50 -------
This bug can be closed as Alexandre has said that the regression suite will be
droping perl as no one uses it and its a bitch to get working on Windows. Trust
me I have tried
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=529>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1030
------- Additional Comments From marcus(a)jet.franken.de 2002-09-17 15:06 -------
Can you ionclude the config.log file generated by configure please?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1030>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1030
------- Additional Comments From fojtik(a)htc.honeywell.cz 2002-09-17 02:18 -------
My OS configuration is:
Slackware 7 + kernel 2.2.21 + gcc 3.0
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1030>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1030
Summary: Problems with compilation wine: .configure creates
invalid config.h
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fojtik(a)htc.honeywell.cz
I had problems with compiling a new version of wine. I analysed a problem
and I have found that configure script does a very bad job.
It generates under some circumstances wrong macro __ASM_FUNC inside config.h
file.
---------------WRONG----------------
/* Define to a macro to generate an assembly function directive */
#define __ASM_FUNC(name) ".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"
---------------GOOD----------------
/* Define to a macro to generate an assembly function directive */
#define __ASM_FUNC(name) ".type " __ASM_NAME(name) ",@function"
When I replaced a definition of __ASM_FUNC from previous release of wine,
everything was compiled succesfully. Could you explain me what does this new
feature mean?
---------see errorneous OUTPUT of COMPILER-------
gcc -c -I. -I. -I../include -I../include -g -O2 -Wall -mpreferred-stack-
boundary=2 -fPIC -D__WINE__ -DDLLDIR="\"/usr/local/lib/wine\"" -D_REENTRANT -
I/usr/X11R6/include -o ldt.o ldt.c
ldt.s: Assembler messages:
ldt.s:1550: Error: unknown pseudo-op: `.def'
ldt.s:1550: Error: unknown pseudo-op: `.scl'
ldt.s:1550: Error: unrecognized symbol type ""
ldt.s:1550: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1550: Error: unknown pseudo-op: `.endef'
ldt.s:1556: Error: unknown pseudo-op: `.def'
ldt.s:1556: Error: unknown pseudo-op: `.scl'
ldt.s:1556: Error: unrecognized symbol type ""
ldt.s:1556: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1556: Error: unknown pseudo-op: `.endef'
ldt.s:1562: Error: unknown pseudo-op: `.def'
ldt.s:1562: Error: unknown pseudo-op: `.scl'
ldt.s:1562: Error: unrecognized symbol type ""
ldt.s:1562: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1562: Error: unknown pseudo-op: `.endef'
ldt.s:1568: Error: unknown pseudo-op: `.def'
ldt.s:1568: Error: unknown pseudo-op: `.scl'
ldt.s:1568: Error: unrecognized symbol type ""
ldt.s:1568: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1568: Error: unknown pseudo-op: `.endef'
ldt.s:1574: Error: unknown pseudo-op: `.def'
ldt.s:1574: Error: unknown pseudo-op: `.scl'
ldt.s:1574: Error: unrecognized symbol type ""
ldt.s:1574: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1574: Error: unknown pseudo-op: `.endef'
ldt.s:1580: Error: unknown pseudo-op: `.def'
ldt.s:1580: Error: unknown pseudo-op: `.scl'
ldt.s:1580: Error: unrecognized symbol type ""
ldt.s:1580: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1580: Error: unknown pseudo-op: `.endef'
ldt.s:1586: Error: unknown pseudo-op: `.def'
ldt.s:1586: Error: unknown pseudo-op: `.scl'
ldt.s:1586: Error: unrecognized symbol type ""
ldt.s:1586: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1586: Error: unknown pseudo-op: `.endef'
ldt.s:1593: Error: unknown pseudo-op: `.def'
ldt.s:1593: Error: unknown pseudo-op: `.scl'
ldt.s:1593: Error: unrecognized symbol type ""
ldt.s:1593: Warning: rest of line ignored; first ignored character is `3'
ldt.s:1593: Error: unknown pseudo-op: `.endef'
make: *** [ldt.o] Error 1
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1030>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 501, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1029
Summary: OmniBack Windows GUI does not startup at all
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: oli(a)flinx.sub.org
The HP OmniBack Windows 4.1 GUI does not startup at all. Error message:
flinx:~/.wine/fake_windows/Program Files/OmniBack/bin $ wine omnicc.exe
fixme:string:GetDateFormatW STUB (should call OLE_GetFormatW)
fixme:string:GetDateFormatW STUB (should call OLE_GetFormatW)
Cannot open desired message catalog!
Aborting!
Wine failed with return code 3
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1029>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1028
Summary: Quicken 2000: Wine hangs when editing scheduled txn
groups
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: carl.sopchak(a)cegis123.com
When running Quicken 2000 Deluxe on Red Hat 7.3, using the current Wine CVS (as
of about 10:00 AM EDT [GMT -04:00], Sep 16, 2002), the following scenario takes
place:
Press <ctrl><J> to get the Scheduled Transaction List.
Select a Group of transactions already on file <click>.
Press <Alt><D> to edit the scheduled group "header".
Click <OK> button.
At this point, Wine seems to hang (no response from any window activity,
including pressing the "x" box in an attempt to close the window). Only Wine
hangs, as you can switch to other windows using <alt><tab> (assuming Wine is
Managed=Y in ~/.wine/config). The Wine process must be killed (-HUP seems to
work OK).
On a Win NT box that I have, after clicking the OK button, a list of Memorized
transactions are shown, and the user can select which ones should be included in
the group.
This bug duplicated on all scheduled groups in my data file.
The same thing happens when adding a new group (<ctrl><J>; <alt><N>; <Group
button>; {fill in test data}; <OK Button>; {{HANG}}).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1028>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From apa3a(a)yahoo.com 2002-09-16 11:34 -------
According to MSDN MSVCIRT.DLL contains Visual C/C++ run-time support.
Bruce, should it be then distributed with the application?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1021
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From apa3a(a)yahoo.com 2002-09-16 09:33 -------
Oscar, I'm glad you found a workaround, but it is still a bug in Wine
oleaut32.dll library and it would be great if you tried to research it further.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1021>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From apa3a(a)yahoo.com 2002-09-16 09:31 -------
The same here. The debug logs are exactly the same as for the application,
compiled with v6.
Note, v8 requres native MSVCIRT.dll to run.
I'll submit later a bug for this.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
48 NEW PrgWin95/98: System metrics differ from the Win9x value
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
84 ASSI Rewrite documentation for Running Wine chapter
90 NEW Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
392 NEW Endless loop of redrawing a constantly growing windoq
397 NEW System hangs while trying to play a sound
413 NEW age of camelot needs wininet.InternetOpenUrlA
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
480 NEW Convert HBITMAP to a void* (references: 311)
481 NEW Convert HBRUSH to a void* (references: 249)
484 NEW Convert HFONT to a void* (references: 200)
486 NEW Convert HINSTANCE to a void* (references: 308)
487 NEW Convert HKEY to a void* (references: 362)
488 NEW Convert HMENU to a void* (references: 279)
500 NEW Convert HRGN to a void* (references: 179)
507 NEW Convert HDC to a void* (references: 804)
508 NEW Convert HANDLE to a void* (references: 1219)
517 NEW Could not load wprocs.dll
529 NEW Running Perl regression tests on Windows
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
532 NEW DLL Separation: gdi32 from ttydrv, x11drv (BITMAP_Drive
533 NEW DLL Separation: gdi32 from ttydrv, x11drv (PALETTE_Driv
534 NEW DLL Separation: gdi32 from ttydrv, x11drv (color init)
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
539 NEW DLL Separation: x11drv from user32 (caret)
540 NEW DLL Separation: x11drv from user32 (clipboard)
541 NEW DLL Separation: x11drv from user32 (drag and drop)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
544 NEW DLL Separation: x11drv from ntdll (Options)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
548 NEW DLL Separation: user32 from ntdll (ATOM_Init)
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: aRts driver (only sometimes - wodDsCreate Di
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
821 NEW grpconv.exe -o -> loaded .so but dll imm.dll still not
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
826 NEW Wine has exited with code error 1 HELP!!
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
910 NEW foreground is the same as background color in winmx / s
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
958 NEW OSS audio problems (err:wave:OSS_OpenDevice Can't set f
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
963 NEW Default values for wineconsole are not saved
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
986 ASSI OBDC.dll unimplemented
995 NEW shlfileop test fails on FreeBSD
996 NEW sock test fails onf FreeBSD
1001 NEW Define macros STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECT
1007 NEW kernel32.dll.Heap32* functions unimplemented
1022 NEW OSS_MidiInit Synthesizer support MIDI in. Not supported
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From l.capriotti(a)tiscali.it 2002-09-16 02:40 -------
Tried both V7 and V8; on my machine both crash similarly to the V6.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From bruce.armstrong(a)teamsybase.com 2002-09-14 22:21 -------
I don't have 6.5 anymore (it's no longer a supported version). I created
builds of the sample application using versions 7 and 8 though that you can use
to see if the problem still occurs with them.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From bruce.armstrong(a)teamsybase.com 2002-09-14 22:20 -------
Created an attachment (id=293)
PowerBuilder 8 version of sample application
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From bruce.armstrong(a)teamsybase.com 2002-09-14 22:15 -------
Created an attachment (id=292)
Application converted to PowerBuilder 7
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1026
Summary: DEBUG_GetSymbolValue
Product: Wine
Version: 20020904
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Jerry_J_Jenkins(a)hotmail.com
Exception of buffer overflow.
#6 0x404b3b49 in DEBUG_GetSymbolValue (
name=0x4081e192
"insert_unique__t8_Rb_tree5Zt12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i0Zt4pair2ZCt12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i0ZQ34Arts19D"...,
lineno=-1,
rtn=0x4061680c, bp_flag=0) at /usr/include/bits/stdio.h:43
#7 0x404bceed in DEBUG_ProcessElfSymtab (module=0x8eb6710,
addr=0x407fb000 "\177ELF\001\001\001", load_addr=1101963264,
symtab=0x408c0a0c, strtab=0x408c0a34) at stabs.c:1073
#8 0x404bd2a7 in DEBUG_LoadElfStabs (module=0x8eb6710) at stabs.c:1191
#9 0x404bd5d0 in DEBUG_ProcessElfFile (
filename=0x406169c4 "/usr/lib/libmcop-gcc2.96.so.1",
load_offset=1101963264, dyn_addr=0x0) at stabs.c:1300
#10 0x404bd780 in DEBUG_ProcessElfObject (
filename=0x406169c4 "/usr/lib/libmcop-gcc2.96.so.1",
load_offset=1101963264, dyn_addr=0x0) at stabs.c:1349
#11 0x404bd8df in DEBUG_WalkList (dbg_hdr=0x40616b3c) at stabs.c:1387
#12 0x404bd94d in DEBUG_RescanElf () at stabs.c:1404
#13 0x404ac442 in DEBUG_ShallBreak (bpnum=2) at break.c:790
#14 0x404ac4bf in DEBUG_ShouldContinue (addr=0x40616bf0, code=2147483651,
count=0x80600d4) at break.c:823
#15 0x404c0fa2 in DEBUG_ExceptionProlog (is_debug=1, force=0, code=2147483651)
at winedbg.c:390
#16 0x404c156b in DEBUG_HandleException (rec=0x40616de4, first_chance=1,
force=0) at winedbg.c:582
#17 0x404c16d9 in DEBUG_HandleDebugEvent (de=0x40616dd8) at winedbg.c:627
#18 0x404c1cae in DEBUG_MainLoop () at winedbg.c:882
#19 0x404c22fe in main (argc=2, argv=0xbffffa28) at winedbg.c:1114
#20 0x404aa16b in __wine_exe_main () at winedbg.exe.spec.c:544
#21 0x400cdf5c in start_process () at ../../scheduler/process.c:564
#22 0x400d1f53 in call_on_thread_stack (func=0x400cdd04)
at ../../scheduler/sysdeps.c:112
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1026>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1025
Summary: Dialog box input not accepted until cursor moved out of
box
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rufusl2001(a)yahoo.com
The HotDocs legal document application appears to perform
it's application logic properly.
However, when entering
data in dialog boxes or child windows, fields and buttons in
these
windows don't respond to input until the cursor is moved
out of the window (and then returned
for further input). The
buttons don'e depress, and keyboard input does not appear in
the
text field until the cursor is moved out of the window;
no mouseclick is needed, just moving the
cursor.
Wine was installeld as follows
- Suse 7.3, Wine 20020804 rpm from Suse.com
- Win98
dir copied to "fakewindows"
- Application files were _not_ installed on Wine, but
rather the
application was run from it's original directory
created when it was installed on Win98.
-
Application DLL's were copied "fakewindows" as needed
based on errs displayed on the
initiating console.
The app appears to be 16bit. Don't know what libraries
or tools were
used to make it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1025>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1021
------- Additional Comments From apa3a(a)yahoo.com 2002-09-13 10:22 -------
It looks like this file has relation to MS Office Visual Basic Editor.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1021>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1021
------- Additional Comments From apa3a(a)yahoo.com 2002-09-13 10:19 -------
Oscar, the snippet shows that application tries to load ole library
C:\\windows\\system\\MSForms.TWD, but this file does not exist.
This file is in system32 subdirectory on my NT machine.
Do you have this file?
It looks lime MS Office can install it. Can you search the log if it mentions
this file before?
Did you check out the AppDB entry for Intellicad 2000?
http://appdb.winehq.com/appview.php?appId=78&versionId=100
It contains reference to HOWTO.
BTW, you could add an entry for 98 version to the AppDB.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1021>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
oscar.valdez(a)plastipak.com.sv changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|WORKSFORME |
------- Additional Comments From oscar.valdez(a)plastipak.com.sv 2002-09-13 09:47 -------
As Andreas Mohr pointed out, the bug persists when Wine imitates Win 9x, so it
can't really be considered closed.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
------- Additional Comments From oscar.valdez(a)plastipak.com.sv 2002-09-13 09:46 -------
Created an attachment (id=291)
More (but similar) debug messages when imitating Win 9x
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
------- Additional Comments From oscar.valdez(a)plastipak.com.sv 2002-09-13 09:45 -------
Created an attachment (id=290)
Debug messages when imitating Win 9x
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1022
corporal_pisang(a)counter-strike.com.my changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From corporal_pisang(a)counter-strike.com.my 2002-09-13 04:58 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1022>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1022
Summary: OSS_MidiInit Synthesizer support MIDI in. Not supported
yet
Product: Wine
Version: 20020904
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: corporal_pisang(a)counter-strike.com.my
fixme:midi:OSS_MidiInit Synthesizer support MIDI in. Not supported yet (please
report)
fixme:reg:RegFlushKey (74): stub
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x45200028)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x45200028)->(00000000,00000013)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x45200028)->(00000000,00000008)
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x45200028)->(00050085,00000013)
fixme:dc:LockWindowUpdate (50085), partial stub!
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1022>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1021
------- Additional Comments From oscar.valdez(a)plastipak.com.sv 2002-09-12 18:19 -------
Created an attachment (id=289)
Intellicad 98 unhandled exception log file
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1021>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=678
------- Additional Comments From rdavis(a)lillysoftware.com 2002-09-12 17:07 -------
I have also encountered this error using 20020310 of wine. When I run
i_view32.exe and then my mouse passes over the window I get the error.
bob
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=678>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1021
Summary: Unable to install Intellicad 98
Product: Wine
Version: 20020904
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: oscar.valdez(a)plastipak.com.sv
In order to install Intellicad 98 (from Visio), I first had to install
dcom95.exe from http://www.microsoft.com/com/dcom/dcom95/download.asp,
otherwise the InstallShield installation would fail.
After installation, I am unable to run Intellicad 98. Only the splash screen
comes up, and then I get 'Unhandled exceptions' from Wine.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1021>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From l.capriotti(a)tiscali.it 2002-09-12 10:41 -------
thanks to Sergio Meinardi for providing the test application.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From l.capriotti(a)tiscali.it 2002-09-12 10:40 -------
Created an attachment (id=288)
source of test application
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From apa3a(a)yahoo.com 2002-09-12 07:06 -------
Luigi,
the Sybase support engineer (Bruce Armstrong) asks for the source of the test
case. Could you attach the source to the bug report?
He also recommends to try PowerBuilder 6.5
> The first thing I would recommend they do is migrate to a fairly late 6.5 build
> and try it again. I had a 6.0 app that was blowing up with date edit masks on
> one out of every 10 Windows machines.
So now I need the same application, compiled under 6.5 to check whether we have
Wine issue or this is old PowerBuilder problem.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From apa3a(a)yahoo.com 2002-09-11 10:19 -------
Created an attachment (id=287)
The debugging output of the application (with /PBDEBUG) on Wine
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From apa3a(a)yahoo.com 2002-09-11 10:18 -------
Created an attachment (id=286)
The debugging output of the application (with /PBDEBUG) on Windows
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=347
------- Additional Comments From nt-(a)gmx.de 2002-09-11 04:19 -------
i think i know what causes that error. at least it disappeard when unchecking the
EXPERIMENTAL emu10k1 midi support (sequenzer).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=347>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=347
------- Additional Comments From nt-(a)gmx.de 2002-09-10 12:24 -------
i can reproduce the:
err:midi:OSS_MidiInit ioctl on midi info for device 0 failed.
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel(
0x403abad0,0000013c,3):stub.
i think it has something to do with the emu10k1 midi-drivers in the kernel (2.4.19),
i've tried wine with 2.4.18 without that err. i also found some older post of a guy in
http://www.mail-archive.com/cooker@linux-mandrake.com/msg43652.html . but look
for yourself.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=347>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=986
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-10 02:06 -------
A set of OBDC dlls for Windows 95 is included with MS Office Pro, look on the
CD,you'll need Windows Installer to run it.
run it by:
msiexec /i $setupfile
They don't seem to include however OBDC.dll itself.
OBDC.dll from memory first appeared in Internet Explorer 4 and was probly last
included in a IE installer in IE5.5
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=986>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1019
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-10 02:02 -------
Sorry for that.
I downloaded IE 5.5 setup and it had that problem in there to, and microsoft
claims IE 5.5 does run on Windows 95 (which wine returns from IpGetProfileString16).
I remember that the original IE5 installer did work, but failed to install IE
itself.
trace:setupapi:GenFormStrWithoutPlaceHolders16 "2.5" -> "2.5"
trace:setupapi:SetupOpenInfFileW L"E:\\IXP001.TMP\\IESetup.inf" -> 0x403ca7c8
trace:setupapi:SetupFindNextMatchLineW (0x403ca7c8,L"Version",L"signature"):
returning 0
trace:setupapi:IpGetProfileString16 0x403ca7c8: section "version" entry
"signature" ret "$Chicago$"
trace:setupapi:GenFormStrWithoutPlaceHolders16 "2.5" -> "2.5"
trace:setupapi:SetupOpenInfFileW L"E:\\IXP001.TMP\\IESetup.inf" -> 0x403c97c0
trace:setupapi:SetupFindNextMatchLineW (0x403c97c0,L"Version",L"signature"):
returning 0
trace:setupapi:IpGetProfileString16 0x403c97c0: section "version" entry
"signature" ret "$Chicago$"
trace:setupapi:GenFormStrWithoutPlaceHolders16 "CustInstDestSection" ->
"CustInstDestSection"
trace:setupapi:SetupOpenInfFileW L"E:\\IXP001.TMP\\IESetup.inf" -> 0x403cc7d0
trace:setupapi:SetupFindNextMatchLineW (0x403cc7d0,L"Version",L"signature"):
returning 0
trace:setupapi:IpGetProfileString16 0x403cc7d0: section "version" entry
"signature" ret "$Chicago$"
trace:setupapi:GenFormStrWithoutPlaceHolders16
"HKLM,\"Software\\Microsoft\\Windows\\CurrentVersion\",\"ProgramFilesDir\",,\"%24%\\%LProgramF%\""
->
"HKLM,\"Software\\Microsoft\\Windows\\CurrentVersion\",\"ProgramFilesDir\",,\"C:\\\\Program
Files\""
Notice IpGetProfileString16 returns $Chicago$, which is the codename for Windows
95 and which Windows 95 uses to identify itself. (also appears in INF files)
Searching for some answers, I looked to the wine debugger:
$ winedbg ie6setup.exe --debugmsg +relay
then backtraced:
Wine-dbg>bt
Backtrace:
=>0 0x400e2853 (start_process+0x2a3 [process.c] in libntdll.dll.so) (ebp=405c6f2
8)
1 0x400e7bbe (call_on_thread_stack+0x8e [sysdeps.c] in libntdll.dll.so) (ebp=4
05c6ff4)
2 0x400e7d5c (SYSDEPS_CallOnStack+0x14 in libntdll.dll.so) (ebp=00000000)
then disassembled it:
Wine-dbg>disassemble
0x400e2853 (start_process+0x2a3 [process.c] in libntdll.dll.so): xorl %eax,%ea
x
0x400e2855 (start_process+0x2a5 [process.c] in libntdll.dll.so): movl %eax,%fs
:0x60
0x400e285b (start_process+0x2ab [process.c] in libntdll.dll.so): movl $0x0,0x0
(%esp)
0x400e2862 (start_process+0x2b2 [process.c] in libntdll.dll.so): call *0xfffff
f6c(%ebp)
0x400e2868 (start_process+0x2b8 [process.c] in libntdll.dll.so): subl $4,%esp
0x400e286b (start_process+0x2bb [process.c] in libntdll.dll.so): movl %eax,0x0
(%esp)
0x400e286e (start_process+0x2be [process.c] in libntdll.dll.so): call 0x40058b
f8 (_init+0x13c0 in libntdll.dll.so)
0x400e2873 (start_process+0x2c3 [process.c] in libntdll.dll.so): xorl %esi,%es
i
0x400e2875 (start_process+0x2c5 [process.c] in libntdll.dll.so): jmp 0x400e26
51 (start_process+0xa1 [process.c] in libntdll.dll.so)
0x400e287a (start_process+0x2ca [process.c] in libntdll.dll.so): leal 0x0(%esi
),%esi
Ie6setup killed itself, then wine's own debugger made an exception, and opened
gdb:
(gdb) #0 0x402f1bf1 in ?? ()
(gdb) #1 0x404c7a42 in ?? ()
(gdb) #2 0x404e11b1 in ?? ()
(gdb) #3 0x400f2848 in ?? ()
(gdb) #4 0x400f1fbf in ?? ()
(gdb) #5 0x400f2382 in ?? ()
(gdb) #6 0x400ff372 in ?? ()
(gdb) #7 0x400ff8c1 in ?? ()
(gdb) #8 <signal handler called>
(gdb) #9 0x404da1c2 in ?? ()
(gdb) #10 0x404e00f2 in ?? ()
(gdb) #11 0x404e1326 in ?? ()
(gdb) #12 0x404dece3 in ?? ()
(gdb) #13 0x404df117 in ?? ()
(gdb) #14 0x404c21a0 in ?? ()
(gdb) #15 0x400e2868 in ?? ()
(gdb) #16 0x400e7bbe in ?? ()
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1019>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1019
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-09-09 19:47 -------
/usr/local/bin/wine: cannot find '/home/Matt/ie6setup.exe'
^^^^^^ ^^^^
No debuging information here since the program did not run.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1019>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1018
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-09-09 19:40 -------
If your version of wine is indeed 20010112 you should get a newer version. Links
are provided here.http://www.winehq.org/download/
Not having the debugger installed is usually the symptom of installing from rpm.
and not from source. Most packagers do not configure the debugger with the
assumption that if you are using the rpm you don't know what to do with debugger
anyways.
When you install from source using ./tools/wineinstall program the debugger is
automaticly configured.
If you know what to do with the debugger, the instructions for setting it up are
here http://www.winehq.org/Docs/wine-devel/dbg-config.shtml (you need to run
regedit to add the entry)
This is not a valid bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1018>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1020
lionel.ulmer(a)free.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |lionel.ulmer(a)free.fr
Status|UNCONFIRMED |ASSIGNED
everconfirmed|0 |1
------- Additional Comments From lionel.ulmer(a)free.fr 2002-09-09 16:46 -------
I already saw the problem... Will investigate if I find the time (other people
are welcome to try too :-) ).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1020>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=958
roz(a)one.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From roz(a)one.net 2002-09-09 16:46 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=958>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1020
------- Additional Comments From roz(a)one.net 2002-09-09 16:43 -------
Created an attachment (id=285)
Capture of window
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1020>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1020
Summary: Funny colors with Windows Media Player
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: roz(a)one.net
I'm assuming this is DirectX related since there are a stream of fixmes in the
console when running this.
When I play a certain .WMV, the colors are messed up. The sound comes through
just fine. I'll attach a capture of just the Media Player window.
The console repeats the following:
fixme:ddraw:Main_DirectDraw_GetScanLine (0x4046c9d0)->(0x42b66dc0)
Also, when starting to play the file, I get:
fixme:ddraw:Main_DirectDrawClipper_Initialize
(0x4045a970)->(0x4046c9dc,0x00000000),stub
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1020>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
48 NEW PrgWin95/98: System metrics differ from the Win9x value
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
84 ASSI Rewrite documentation for Running Wine chapter
90 NEW Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
392 NEW Endless loop of redrawing a constantly growing windoq
397 NEW System hangs while trying to play a sound
413 NEW age of camelot needs wininet.InternetOpenUrlA
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
480 NEW Convert HBITMAP to a void* (references: 311)
481 NEW Convert HBRUSH to a void* (references: 249)
484 NEW Convert HFONT to a void* (references: 200)
486 NEW Convert HINSTANCE to a void* (references: 308)
487 NEW Convert HKEY to a void* (references: 362)
488 NEW Convert HMENU to a void* (references: 279)
500 NEW Convert HRGN to a void* (references: 179)
507 NEW Convert HDC to a void* (references: 804)
508 NEW Convert HANDLE to a void* (references: 1219)
517 NEW Could not load wprocs.dll
529 NEW Running Perl regression tests on Windows
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
532 NEW DLL Separation: gdi32 from ttydrv, x11drv (BITMAP_Drive
533 NEW DLL Separation: gdi32 from ttydrv, x11drv (PALETTE_Driv
534 NEW DLL Separation: gdi32 from ttydrv, x11drv (color init)
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
539 NEW DLL Separation: x11drv from user32 (caret)
540 NEW DLL Separation: x11drv from user32 (clipboard)
541 NEW DLL Separation: x11drv from user32 (drag and drop)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
544 NEW DLL Separation: x11drv from ntdll (Options)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
548 NEW DLL Separation: user32 from ntdll (ATOM_Init)
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: aRts driver (only sometimes - wodDsCreate Di
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
821 NEW grpconv.exe -o -> loaded .so but dll imm.dll still not
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
826 NEW Wine has exited with code error 1 HELP!!
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
910 NEW foreground is the same as background color in winmx / s
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
963 NEW Default values for wineconsole are not saved
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
986 ASSI OBDC.dll unimplemented
995 NEW shlfileop test fails on FreeBSD
996 NEW sock test fails onf FreeBSD
1001 NEW Define macros STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECT
1007 NEW kernel32.dll.Heap32* functions unimplemented
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=997
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-07 19:13 -------
Auto-generated debug report by Wine Quick Debug Report Maker Thingy:
WINE Version: wine-20020904
Windows Version: None Installed
Distribution: RedHat 7.0-gcc 3.2- glibc-2.2-12
Kernel Version: 2.2.16-22
OS Type: Linux
CPU: i686
GCC Version: Configured with: ./configure
Program: Microsoft Flight Simulator 2002 Standard Edition
Program Type: Win32
Debug Options: -debugmsg +relay
Other Extra Commands Passed:
Extra ./configure Commands: None
Wine Dependencies:
libntdll.dll.so => /usr/local/lib/libntdll.dll.so (0x40024000)
libwine.so => /usr/local/lib/libwine.so (0x4013f000)
libwine_unicode.so => /usr/local/lib/libwine_unicode.so (0x40157000)
libm.so.6 => /lib/libm.so.6 (0x40221000)
libc.so.6 => /lib/libc.so.6 (0x40241000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x40362000)
libdl.so.2 => /lib/libdl.so.2 (0x4036b000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
Last 200 lines of debug output follows:
/usr/local/bin/wine: cannot find '/mnt/win_d/games/fs2002fs2002.exe'
I have a copy of the full debug report, if it is needed.
Thank you!
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=997>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=501
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=501>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1019
Summary: IpGetProfileString16 returns wrong release string.
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
Auto-generated debug report by Wine Quick Debug Report Maker Thingy:
WINE Version: Wine 20020804
Windows Version: None Installed
Distribution: RedHat 7.0
Kernel Version: 2.2.16-22
OS Type: Linux
CPU: i686
GCC Version: Configured with: ./configure
Program: Microsoft Internet Explorer 6.0
Program Type: Win32
Debug Options: -debugmsg +setupapi
Other Extra Commands Passed:
Extra ./configure Commands: None
Wine Dependencies:
libntdll.dll.so => /usr/local/lib/libntdll.dll.so (0x40024000)
libwine.so => /usr/local/lib/libwine.so (0x4013f000)
libwine_unicode.so => /usr/local/lib/libwine_unicode.so (0x40157000)
libm.so.6 => /lib/libm.so.6 (0x40221000)
libc.so.6 => /lib/libc.so.6 (0x40241000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x40362000)
libdl.so.2 => /lib/libdl.so.2 (0x4036b000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
Last 200 lines of debug output follows:
/usr/local/bin/wine: cannot find '/home/Matt/ie6setup.exe'
I have a copy of the full debug report, if it is needed.
Thank you!
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1019>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1018
Summary: when running an installed app, wine states it cannot
find the debugger.
Product: Wine
Version: 20010112
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P5
Component: wine-help
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: digisin(a)attbi.com
So far this has happened with all of the p2p apps i have installed (KaZaA,
iMesh). this post is concerning iMesh. the iMesh install exe works fine, and
looks to have installed with no problems. when i cd into the dir iMesh is
installed (~/.wine/fake_windows/Program\ Files/iMesh/Client) and run
imesh_336.exe I get this error message:
wine: Unhandled exception, starting debugger...
err:seh:start_debugger Couldn't start debugger ("debugger/winedbg 134660448
104") (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
when i run iMeshClient.exe (in the same dir) I get the same message followed
by:
err:local:LOCAL_GetBlock not enough space in USER heap 021f for 60 bytes
err:menu:MENU_GetSysMenu failed to load system menu!
this repeats for a good solid 10 minutes before a wine desktop window shows
then closes immidiately.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1018>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 509, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1014
eduardo.pires(a)embasa.ba.gov.br changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |eduardo.pires(a)embasa.ba.gov.
| |br
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1014>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=987
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20020710 |20020804
------- Additional Comments From puoti(a)inwind.it 2002-09-06 09:20 -------
It carshed in the same way, like this:
$wine AoE2demo.exe --debugmsg +shell32
wine: Unhandled exception, starting debugger...
wine: Unhandled exception, starting debugger...
wine: Unhandled exception, starting debugger...
wine: Unhandled exception, starting debugger...
wine: Unhandled exception, starting debugger...
wine: Unhandled exception, starting debugger...
wine: Unhandled exception, starting debugger...
wine: Unhandled exception, starting debugger...
And so on until I close the shell.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=987>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1008
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |andi(a)rhlx01.fht-esslingen.de
Status|NEW |ASSIGNED
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-09-06 06:09 -------
Hmm, this FIXME should be moved from SETUPX_CreateStandardLDDs() (which is *not*
a Windows function - it's Wine internal) to the functions *actually* requesting
a LDID_SRCPATH value. In this case the program probably doesn't even request it,
yet we still print the FIXME.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1008>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=987
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-06 05:11 -------
Try running the installer with:
$wine (setup.exe?) --debugmsg +shell32.
And put what it says here
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=987>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1017
Summary: Unhandled exception
Product: Wine
Version: 20020904
Platform: PC
URL: http://www.rom-logicware.com/demo.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: infomails(a)gmx.net
Hello there,
I tested a Office Package called "Papyrus Office" for a friend which plans
to migrate his system to linux.
Now i'd take the beta from the page and want install it but it was rapidly
stopped with this message:
manuel@prodigy7:/tmp > wine PAPWDEMO.EXE
Warning: unprotecting the first 64KB of memory to allow real-mode calls.
NULL pointer accesses will no longer be caught.
wine: Unhandled exception, starting debugger...
I think it have not the highest priority to solve this problem but maybe
there's an bug in wine, how like ever
Happy wineing :-)
Greetings
Manuel
P.S.: Sorry for my bad and maybe not best understandable english
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1017>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1008
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |FIXME
Summary|Recent Microsoft installers |SETUPX_CreateStandardLDDs
|unable to find Win Version |unimplemented
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-06 03:59 -------
After doing some tracing using:
wine --debugmsg +shell32 ie6setup.exe
This was the debug output:
fixme:win32:PE_CreateModule Security directory ignored
fixme:process:CreateProcessA (E:\IXP001.TMP\ie6wzd.exe,...):
NORMAL_PRIORITY_CLASS ignored
fixme:cursor:CURSORICON_SimulateLoadingFromResourceW Animated icons not
correctly implemented! 0x413d0000
fixme:cursor:CURSORICON_SimulateLoadingFromResourceW icon entry found! 0x413d0000
fixme:cursor:CURSORICON_SimulateLoadingFromResourceW icon size ok.
offset=0x413d0074
_______________________________________________________________________________
fixme:setupapi:SETUPX_CreateStandardLDDs LDID_SRCPATH: what exactly do we have
to do here ?
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This is the call that recent MS installers are asking for.
This function call was not present in Windows 95, and was first seen in Windows
98, then NT SP6, then 2000,then ME then XP, then of course the current beta
Blackwood.
attaching FIXME
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1008>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=999
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-06 02:15 -------
does anybody know what PE_CreateModuleSecurity does?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=999>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1008
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
BugsThisDependsOn| |89, 997
Keywords|download |
Summary|Internet Explorer 6 does not|Recent Microsoft installers
|install |unable to find Win Version
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-06 02:07 -------
Changes:
This also appears in the Microsoft Flight Simulator 2002 installer.
Adding a dependency on Bug 997 (FlightSim2002 related metabug)
Adding a dependency on Bug 89 (Installer Metabug)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1008>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1016
Summary: Drawing with crosshatching doesn't crosshatch - it fills
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: wowbagger(a)sktc.net
The app I am using is Delorme's AAA MapNGo 4.0, a mapping program (so I don't
have the source). The program can draw crosshatched highlights for user objects
as well as map features.
When a crosshatched object is drawn, the area covered by the object is filled in
black. This is independant of the requested object being drawn - ask for a
crosshatched blue circle, get a black circle.
I can tell that the items behind the object are drawn, then the object
overwrites them.
This has been the case for as long as I've been able to run MN4 under Wine, and
I have confirmed it on a CVS pull of a few minutes ago (5 Sept 2002 at 20:00 CDT).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1016>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=421
------- Additional Comments From aljones(a)lbl.gov 2002-09-05 14:07 -------
from the description:
>* the X bitmap has to be in the format of the X display. So if X is running in
> 15bpp, a 32bpp DIB is converted to 15bpp, the operation is performed in 15bpp,
> and the bitmap is then converted back to 32bpp. Obviously this implies that
> each operation occurs a loss of color resolution (fortunately they should not
> accumulate).
for my version of X this no longer seems to be required:
vendor string: The XFree86 Project, Inc
vendor release number: 40199001
XFree86 version: 4.1.99.1
...
supported pixmap formats:
depth 1, bits_per_pixel 1, scanline_pad 32
depth 4, bits_per_pixel 8, scanline_pad 32
depth 8, bits_per_pixel 8, scanline_pad 32
depth 15, bits_per_pixel 16, scanline_pad 32
depth 16, bits_per_pixel 16, scanline_pad 32
depth 24, bits_per_pixel 32, scanline_pad 32
depth 32, bits_per_pixel 32, scanline_pad 32
even though my screen is only in depth 15, i can
manipulate pixmaps of any depth. i haven't yet
figured out how to manipulate color information in
these other pixmaps (save for just setting the pixel
values directly -- works ok for TrueColor), but
drawing seems to work fine...
arthur
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=421>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-09-05 11:47 -------
Argl, I meant --debugmsg +relay
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-09-05 11:46 -------
Did you realize what you just said ? You said it's a *workaround*, not a bug fix.
Thus this bug is still valid :)
(as I'm damn sure that VFP *should* run on a Win 9x based system)
Sounds like there's a problem with some Wine Win9x support code that's being run
when the app decides to switch to Win9x mode instead of NT mode.
So should that bug be reopened ?
(please submit a --debugmsg +Relay log file in win9x mode in this case)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
------- Additional Comments From oscar.valdez(a)plastipak.com.sv 2002-09-05 11:35 -------
No, that's not exactly the way I would interpret things.
At least on Wine, Visual FoxPro "runs" when Wine is imitating NT40, W2K or WXP,
but not when it's imitating W9x. It seems like a simple workaround.
And I say "runs", because I'm still getting OLE exception errors.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-09-05 11:24 -------
So you want to tell us that Visual FoxPro only runs on an NT-based Windows version
(NT, Win 2000, XP) and never on a Win 9x system, right ?
Or why else would you consider this bug to be closed ?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
oscar.valdez(a)plastipak.com.sv changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From oscar.valdez(a)plastipak.com.sv 2002-09-05 11:11 -------
I've gotten over this problem by setting "nt40", "win2k" or "winxp" as the
Windoze version to imitate.
The Visual FoxPro application now runs, although with "OLE exception errors".
That's a completely different matter though, so I consider this particular case
closed.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1008
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-05 03:29 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1008>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1007
------- Additional Comments From centaur(a)netmagic.net 2002-09-04 23:55 -------
Here's abbreviated --debugmsg +relay output, though I'm not really sure if I've
gotten the part where it starts to barf. I've done some more reading, and it
sounds to me like CreateToolhelp32Snapshot and friends are typically used for
Windows debugging (is this correct?) so maybe the real culprit is further up the
chain. Any help would be greatly appreciated!
08c58100:Call user32.GetCursorInfo(422a6590) ret=40c743a4
08c58100:Call x11drv.GetCursorPos(422a659c) ret=408279ad
08c58100:Ret x11drv.GetCursorPos() retval=00000134 ret=408279ad
08c58100:Ret user32.GetCursorInfo() retval=00000001 ret=40c743a4
08c58100:Call kernel32.GetCurrentThreadId() ret=40c73473
08c58100:Ret kernel32.GetCurrentThreadId() retval=08c58100 ret=40c73473
08c58100:Call user32.GetQueueStatus(000000bf) ret=40c743d0
08c58100:Ret user32.GetQueueStatus() retval=00000000 ret=40c743d0
08c58100:Call kernel32.GetCurrentThreadId() ret=40c73473
08c58100:Ret kernel32.GetCurrentThreadId() retval=08c58100 ret=40c73473
08c58100:Call kernel32.FreeLibrary(407e0000) ret=40c743f1
08c58100:Ret kernel32.FreeLibrary() retval=00000001 ret=40c743f1
08c58100:Call kernel32.GetProcAddress(40610000,40cbe7f0
"CreateToolhelp32Snapshot") ret=40c74401
08c58100:Ret kernel32.GetProcAddress() retval=40677000 ret=40c74401
08c58100:Call kernel32.GetProcAddress(40610000,40cbe7e4 "Heap32First")
ret=40c7440b
08c58100:Ret kernel32.GetProcAddress() retval=4061771c ret=40c7440b
08c58100:Call kernel32.GetProcAddress(40610000,40cbe7d8 "Heap32Next")
ret=40c74417
08c58100:Ret kernel32.GetProcAddress() retval=40617770 ret=40c74417
08c58100:Call kernel32.GetProcAddress(40610000,40cbe7c8 "Heap32ListFirst")
ret=40c74423
08c58100:Ret kernel32.GetProcAddress() retval=40617738 ret=40c74423
08c58100:Call kernel32.GetProcAddress(40610000,40cbe7b8 "Heap32ListNext")
ret=40c7442d
08c58100:Ret kernel32.GetProcAddress() retval=40617754 ret=40c7442d
08c58100:Call kernel32.GetProcAddress(40610000,40cbe7a8 "Process32First")
ret=40c74439
08c58100:Ret kernel32.GetProcAddress() retval=40678d10 ret=40c74439
08c58100:Call kernel32.GetProcAddress(40610000,40cbe798 "Process32Next")
ret=40c74445
08c58100:Ret kernel32.GetProcAddress() retval=40678d20 ret=40c74445
08c58100:Call kernel32.GetProcAddress(40610000,40cbe788 "Thread32First")
ret=40c74451
08c58100:Ret kernel32.GetProcAddress() retval=406797c0 ret=40c74451
08c58100:Call kernel32.GetProcAddress(40610000,40cbe778 "Thread32Next")
ret=40c7445d
08c58100:Ret kernel32.GetProcAddress() retval=406797d0 ret=40c7445d
08c58100:Call kernel32.GetProcAddress(40610000,40cbe768 "Module32First")
ret=40c74469
08c58100:Ret kernel32.GetProcAddress() retval=40678ad0 ret=40c74469
08c58100:Call kernel32.GetProcAddress(40610000,40cbe758 "Module32Next")
ret=40c74475
08c58100:Ret kernel32.GetProcAddress() retval=40678ae0 ret=40c74475
08c58100:Call kernel32.CreateToolhelp32Snapshot(0000000f,00000000) ret=40c744f7
08c58100:Ret kernel32.CreateToolhelp32Snapshot() retval=000000c4 ret=40c744f7
08c58100:Call kernel32.GetLastError() ret=00443683
08c58100:Ret kernel32.GetLastError() retval=00000002 ret=00443683
08c58100:Call kernel32.TlsGetValue(00000009) ret=00443691
08c58100:Ret kernel32.TlsGetValue() retval=41bd01e0 ret=00443691
08c58100:Call kernel32.SetLastError(00000002) ret=004436dd
08c58100:Ret kernel32.SetLastError() retval=00000002 ret=004436dd
08c58100:Call kernel32.UnhandledExceptionFilter(422a60a0) ret=00444eb6
08c58100:Call kernel32.IsBadCodePtr(7800b322) ret=00449078
08c58100:Ret kernel32.IsBadCodePtr() retval=00000000 ret=00449078
wine: Unhandled exception, starting debugger...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1007>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1011
Summary: Can't Work In Lycoris Desktop/LX
Product: Wine
Version: 20010112
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P5
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: bksathesh(a)dacafe.com
G'day Everyone,
I'm having some problem trying to install codeweaver-wine in Lycoris
Desktop/LX. It tells me that the XFree86 lib or sumthin like that is
incompatible. Apparently, Lycoris uses version .025 while mandrake uses
version .023 So it works well with Mandrake but not in Lycoris. Could you guyz
be of much assisatnce to me?. I'm actually writing from a company in Malaysia
that serves many of the bluechip companies over here. I sincerely hope you guyz
could look into the matter ASAP asI need to do a roll out on the 15.9.2002 and
I need to be well prepared before that. Thanx for the help.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1011>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1010
Summary: Unhandled exception in VFP6R.DLL (Visual FoxPro 6)
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: oscar.valdez(a)plastipak.com.sv
I've been trying to install and run a simple Visual Fox Pro 6 application.
At first, I was having trouble registering MSCAL.OCX. I solved that by adding
the line "comcat"="builtin,native" to the DLLOverrides section of
~/.wine/config. The application installed, and all the components registered
properly.
But when I try to run the application, I'm immediately dropped to the debug
window, with the following (final) statement:
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x0c0b4ce6).
In 32-bit mode.
0x0c0b4ce6 (VFP6R.DLL.DllWinMain+0x5e1e9 in C:\WINDOWS\SYSTEM\VFP6R.DLL): mov1
0x0(%eax),%eax
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1010>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1009
Summary: Character set of filenames is wrong in Russia
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: semzx(a)newmail.ru
WINE almost correctly uses charset cp1251 for text in Russia.
The only place it takes incorrect is filenames.
If I fire an open dialog, I get Russian filenames wrong.
To reproduce this kind of distortion in a web browser
(just for me to explain easily what it is),
create a file with text in koi8-r and view it as if it was in cp1251
- you will have exactly he same distortion of characters.
In all places where a program displays the filename, I get the same distortion,
but files are opened OK.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1009>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-04 01:59 -------
I've also noticed this in other M$ apps:
Microsoft Works 4.0, Microsoft Money for Win95
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-04 01:58 -------
Created an attachment (id=284)
bzip'ed Debug output
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=969
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From johane(a)lysator.liu.se 2002-09-03 04:12 -------
Unable to reproduce now. Probably works.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=969>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-09-03 04:12 -------
Well, of course RtlAllocateHeap doesn't return TRUE.
It's supposed to return an LPVOID, the address of the buffer allocated
(like all heap alloc function do !).
Having said that, I really don't think the error is due to RtlAllocateHeap.
An "out of disk space" error might be caused by all sorts of other errors,
too.
RtlAllocateHeap is probably rather perfect. (it doesn't even have a single FIXME
either)
Attaching a --debugmsg +relay,+file,+dosfs log file of the error might be a good
idea...
A RAM size fake option would be a good idea, yes.
(some games have a swap partition check, for example, and they fail to run
if you don't have enough free swap space, so such an option would be good)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1008
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-03 02:53 -------
Created an attachment (id=282)
Compressed Debug output
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1008>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1008
Summary: Internet Explorer 6 does not install
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
I installed Windows Media Player 6 (well, it's always safer to use Older Apps
which have been in the "try again" & "stubbed functions" & "test me please" bins
before new ones which may have new previously unknown functions in them).
I attempted to open an .WMV file, and it tried downloading a codec. It needed IE
so I downloaded the installer of IE6, but came out saying I need Win98, Win2K,
WinNT, or WinME to install it. I set the imitate option to all of them
repeatedly but none of them worked.
Debug output attached
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1008>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-03 02:44 -------
I've noticed that Wine does not pass on swap, but only the memory free. Perhaps
we should create a "ForceRAM" option in the wine config file in the future to
force programs to belive that there is a certain amount of ram
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From mcbridematt(a)hotmail.com 2002-09-03 02:42 -------
A related function:
<code>RtlFreeHeap</code>
Returns TRUE when asked for.
But RtlAllocateHeap doesn't.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1007
centaur(a)netmagic.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From centaur(a)netmagic.net 2002-09-03 00:53 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1007>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=651
puoti(a)inwind.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From puoti(a)inwind.it 2002-09-02 08:35 -------
Closing.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=651>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
48 NEW PrgWin95/98: System metrics differ from the Win9x value
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
84 ASSI Rewrite documentation for Running Wine chapter
90 NEW Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
392 NEW Endless loop of redrawing a constantly growing windoq
397 NEW System hangs while trying to play a sound
413 NEW age of camelot needs wininet.InternetOpenUrlA
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
480 NEW Convert HBITMAP to a void* (references: 311)
481 NEW Convert HBRUSH to a void* (references: 249)
484 NEW Convert HFONT to a void* (references: 200)
486 NEW Convert HINSTANCE to a void* (references: 308)
487 NEW Convert HKEY to a void* (references: 362)
488 NEW Convert HMENU to a void* (references: 279)
500 NEW Convert HRGN to a void* (references: 179)
501 NEW Convert HRSRC to a void* (references: 86)
507 NEW Convert HDC to a void* (references: 804)
508 NEW Convert HANDLE to a void* (references: 1219)
517 NEW Could not load wprocs.dll
529 NEW Running Perl regression tests on Windows
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
532 NEW DLL Separation: gdi32 from ttydrv, x11drv (BITMAP_Drive
533 NEW DLL Separation: gdi32 from ttydrv, x11drv (PALETTE_Driv
534 NEW DLL Separation: gdi32 from ttydrv, x11drv (color init)
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
539 NEW DLL Separation: x11drv from user32 (caret)
540 NEW DLL Separation: x11drv from user32 (clipboard)
541 NEW DLL Separation: x11drv from user32 (drag and drop)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
544 NEW DLL Separation: x11drv from ntdll (Options)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
548 NEW DLL Separation: user32 from ntdll (ATOM_Init)
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: aRts driver (only sometimes - wodDsCreate Di
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
821 NEW grpconv.exe -o -> loaded .so but dll imm.dll still not
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
826 NEW Wine has exited with code error 1 HELP!!
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
910 NEW foreground is the same as background color in winmx / s
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
963 NEW Default values for wineconsole are not saved
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
986 ASSI OBDC.dll unimplemented
995 NEW shlfileop test fails on FreeBSD
996 NEW sock test fails onf FreeBSD
1001 NEW Define macros STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECT
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=983
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |FIXME
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-31 21:47 -------
Added FIXME
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=983>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1007
------- Additional Comments From centaur(a)netmagic.net 2002-08-30 19:43 -------
I am trying to get the client program for ParadisePoker.com running on wine. It
was working until a few days ago when they distributed an updated version of the
client. winedbg reports unimplemented function: kernel32.dll.Heap32ListFirst
when I try to run it now. Looking at the spec file, I see that none of the
Heap32* functions are implemented. I would like to help any way I can, but
after reviewing the MSDN descriptions of the functions and some of the code
involved in related functions such as CreateToolhelp32Snapshot, I think it may
be a bit beyond what I currently know. Any tips are appreciated, and I would be
happy to provide the debug info I've collected so far.
Per Nystrom
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1007>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1007
Summary: kernel32.dll.Heap32* functions unimplemented
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: centaur(a)netmagic.net
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1007>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1006
Summary: CallNamedPipeA
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ipc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pabrile(a)exa.unicen.edu.ar
CC: pabrile(a)exa.unicen.edu.ar
I can see the following error while trying to execute Pervasive's iscout program
to test Database interactivity over the network:
fixme:win32:CallNamedPipeA "\\\\BTI-RICHARD\\PIPE\\BMKDE\\FUNCTION.PIP"
0x405d5e98 82 0x405d5fbc 82 0x405d6010 10000
fixme:netbios:Netbios NCBADDNAME
fixme:netbios:Netbios NCBADDNAME
Can I Fix this?. I've seen an error like this one with PeekNamedPipe
Can you help me?.
Thanks in advance
------------------
Pablo Abrile
Informatica
UNCPBA
http://www.unicen.edu.ar
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1006>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=682
adelton(a)fi.muni.cz changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adelton(a)fi.muni.cz
------- Additional Comments From adelton(a)fi.muni.cz 2002-08-30 11:49 -------
Well, from the error message I thought that it should have been implemented in
ADVAPI32.dll.
The MSIE has no problem accessing https sites per se, it's just this applet (or
ActiveX thingy) that the bank uses. You should be able to see it crash by
clicking on the URL from the original report.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=682>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1004
Summary: Error during Eudora Pro 4.2 installation
Product: Wine
Version: 20020710
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: relson(a)osagesoftware.com
Attempting to install Eudora Pro 4.2, I got the following error popup:
Eudora Pro Email 4.2 Setup
An error occurred during the move data process: -160
Component: Eudora\Shared DLLs
File Group: Shared DLLs
File: Wininet.dll
If you need more info, let me know what you want and how to generate it...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1004>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=993
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-30 00:53 -------
Resolving Invalid
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=993>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=663
------- Additional Comments From woolite(a)darkpact.com 2002-08-29 19:11 -------
Hi!
With unmanaged mode, the application is completely unresponsive. Tested with
latest wine build (CVS as of Aug 29th).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=663>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
------- Additional Comments From mstefani(a)redhat.com 2002-08-29 15:38 -------
Some tips and tricks:
* Before you convert the handle to a void do a 'make clean' and a 'make' and
save the output to a file. After changing to DECLARE_HANDLE do again a 'make
clean' and a 'make' and save the output to a new file. Doing a diff (diff -u) on
the two make output files restricts the output to the interesting part.
* Don't use WOWHandle16 and WOWHandle32 to do the handle16 <--> handle
conversions. Use instead macros like this ones (if applicable):
#define HMIDI_32(h16) ((HMIDI)(ULONG_PTR)(h16))
#define HMIDI_16(h32) (LOWORD(h32))
* Put the macros in a private header in the directory of the dll that needs it
(or in the file directly if you need it only there).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1003
------- Additional Comments From billmedland(a)look.ca 2002-08-29 15:31 -------
Created an attachment (id=281)
source for program demonstarting the problem.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1003>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1003
Summary: random pixels in imagelist backgrounds
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: billmedland(a)look.ca
I first noted this in ACCPAC but have attached a minimal case that demonstrates
the same problem. The issue requires a native comctl32.dll (specifically I
used a Windows NT one).
If an image list is created and no background is set (or, in the ACCPAC case if
the background is not white) then random pixels appear in the background of the
icon.
I believe that this has to be something to do with the gdi and the bitmap code.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1003>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=990
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |pouech(a)winehq.com
Status|NEW |ASSIGNED
------- Additional Comments From apa3a(a)yahoo.com 2002-08-29 13:02 -------
Eric, do you want do look into it?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=990>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1002
Summary: fixme:msvcrt:MSVCRT_sscanf unhandled: %[
Product: Wine
Version: 20020804
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jbator(a)man.poznan.pl
As in title ....
it was for string "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-iso8859"
and to mach "-%30[^-]-%100[^-]-%30[^-]-%30[^-]-%30[^-]-%n"
maches for [] paterns are not implemented.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1002>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
and STATUS_NONEXISTENT_NET_NAME
http://bugs.winehq.com/show_bug.cgi?id=1001
Summary: Define macros STATUS_ENDPOINT_CLOSED,
STATUS_DISCONNECTED
Product: Wine
Version: CVS
Platform: PC
OS/Version: All
Status: NEW
Severity: minor
Priority: P5
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: apa3a(a)yahoo.com
These constants should be defined in winnt.h.
According to Dmitry Timoshkov STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECTED
and STATUS_NONEXISTENT_NET_NAME are not defined neither by
win2000 nor winxp DDK or Platform SDK headers.
When this bug is fixed please also define winnt statuses to windows errors
mapping for these statuses in function LsaNtStatusToWinError. See
dlls/advapi32/security.
See also http://support.microsoft.com/default.aspx?scid=KB;EN-US;q113996&
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1001>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=976
------- Additional Comments From dragon_sdc(a)hotmail.com 2002-08-29 07:25 -------
A quick search shows that I only have the following:
$ locate .drv.so
/usr/lib/wine/joystick.drv.so
/usr/lib/wine/mcianim.drv.so
/usr/lib/wine/mciavi.drv.so
/usr/lib/wine/mcicda.drv.so
/usr/lib/wine/mciseq.drv.so
/usr/lib/wine/mciwave.drv.so
/usr/lib/wine/midimap.drv.so
/usr/lib/wine/msacm.drv.so
/usr/lib/wine/wineaudioio.drv.so
/usr/lib/wine/wineoss.drv.so
It looks like I don't have the winspool.drv.so file.
I am a Debian user, therefore I installed Wine through the Debian package
manager. Yes, it installed without any errors.
Was I supposed to have this file after the initial install?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=976>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=986
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |andi(a)rhlx01.fht-esslingen.de
Status|NEW |ASSIGNED
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-08-29 05:20 -------
Well, then... what about simply implementing it ? ;-)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=986>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-29 04:48 -------
Others:
64MB Ram
800MHz Duron
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=663
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-29 04:09 -------
have you tried running without desktop or managed mode.
I know that many apps seem to read only in unmanaged mode
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=663>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 498, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=986
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-29 04:05 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=986>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=986
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-29 04:04 -------
Same for me.
OBDC.dll unimplemented.
Wine segfaults.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=986>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-29 03:58 -------
More debugging shows that:
RtlAllocateHeap
is known. But needs somemore programming.
Debug output:
084c1018:trace:heap:RtlAllocateHeap (40350000,00000002,00000018): returning 403505f0
I have reason to belive this is used by Windows programs, particularly ones by
Microsoft to check if there is enough diskspace.
Microsoft must be the only one using it, as I have searched through Unoffical
and Office implementations of the Platform SDK to no avail.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-29 03:50 -------
Created an attachment (id=280)
Screenshot
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1000
Summary: MSFlightSim2002 : FlightSimulator 2002 belives not
enough diskspace
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
This bug is a part of Efforts to port Microsoft Flight Simulator to Linux via Wine
---------------------------------------------------------------------------
Assumes:
Read Bug 997 and all of its dependencies
Shell Command
$ wine fs2002.exe
X11 output attached.
Other Comments:
Microsoft seems to have placed a function call in software since 1995 to make
sure it is running on the Correct Windows version. This call seems to be
misinterpreted with wine
System:
NVIDIA RIVA TNT
RedHat Linux 7.0
Glibc 2.2-12
20GB HD:
2 GB /usr/local (formerly Windows C:) ext2 raid
10 GB /mnt/win_d (formerly Windows D:, use to be 16GB, rest split up as /,
location of fs2002) vfat
1 GB /mnt/win_e (formerly Windows E:). vfat. Configured as Wine TEMPDIR
2 GB /usr ext2
2 GB / ext2
32MB swap swap
32MB
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=999
Summary: MSFlightSim2002 : PE_CreateModuleSecurity ignored
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
This bug is a part of efforts to port FS2002 to Linux via Wine.
See Metabug 997
Additional Info in 998
Shell Command
$ wine fs2002.exe
Output:
fixme:win32:PE_CreateModule Security directory ignored
<!-- All other output is contained in 998 -->
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=999>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=998
Summary: MSFlightSim2002 : WineEngRemoveFontResourceEx is stubbed
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
This bug is a part of efforts to help port FlightSimulator 2002 to wine.
Command run:
$ wine fs2002.exe
fixme:win32:PE_CreateModule Security directory ignored
err:win:WIN_FindWndPtr window 10024 belongs to other process
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
Debugmsg FIXME:
084b8030:trace:heap:RtlAllocateHeap (40350000,00000002,00000018): returning 403505f0
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=998>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=997
Summary: MSFlightSimPorting : Metabug
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
This is a bug to deal with problems porting Microsoft Flight Simulator 2002 to Unix.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=997>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=996
------- Additional Comments From fgouget(a)codeweavers.com 2002-08-28 22:25 -------
Another run and some more messages:
../../../../src/programs/winetest/runtest -q -P wine -M ws2_32.dll -T ../../..
-p ws2_32_test.exe.so ../../../../src/dlls/winsock/tests/sock.c && touch sock.ok
fixme:reg:GetSystemInfo not yet supported on this system
../../../../src/dlls/winsock/tests/sock.c:607: Test failed: some threads have
not completed
../../../../src/dlls/winsock/tests/sock.c:231: Test failed: failed to bind: 10048
../../../../src/dlls/winsock/tests/sock.c:607: Test failed: some threads have
not completed
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=996>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=996
Summary: sock test fails onf FreeBSD
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: NEW
Severity: normal
Priority: P2
Component: wine-ports
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fgouget(a)codeweavers.com
The sock.c test fails on FreeBSD 4.6:
../../../../src/programs/winetest/runtest -q -P wine -M ws2_32.dll -T ../../..
-p ws2_32_test.exe.so ../../../../src/dlls/winsock/tests/sock.c && touch sock.ok
fixme:reg:GetSystemInfo not yet supported on this system
../../../../src/dlls/winsock/tests/sock.c:607: Test failed: some threads have
not completed
The test then gets stuck.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=996>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=995
Summary: shlfileop test fails on FreeBSD
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: NEW
Severity: normal
Priority: P2
Component: wine-ports
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fgouget(a)codeweavers.com
The shlfileop test fails on FreeBSD 4.6:
../../../../src/programs/winetest/runtest -q -P wine -M shell32.dll -T ../../..
-p shell32_test.exe.so ../../../../src/dlls/shell32/tests/shlfileop.c && touch
shlfileop.ok
fixme:reg:GetSystemInfo not yet supported on this system
../../../../src/dlls/shell32/tests/shlfileop.c:177: Test failed: Rename dir
../../../../src/dlls/shell32/tests/shlfileop.c:178: Test failed: The dir is renamed
../../../../src/dlls/shell32/tests/shlfileop.c:179: Test failed: The dir is renamed
../../../../src/dlls/shell32/tests/shlfileop.c:182: Test failed: Rename dir back
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=995>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=993
------- Additional Comments From dclark(a)akamail.com 2002-08-28 12:04 -------
The problem is that the line is missing a colon. I think that this is the same
problem that I had previously. Obviously, the CUPS software does not care ;) The
line should be
*CloseUI: *stpBrightness
instead of
*CloseUI *stpBrightness
I think that should fix that particular problem, in which case this is a CUPS
bug rather than Wine bug.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=993>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=993
------- Additional Comments From dclark(a)akamail.com 2002-08-28 10:30 -------
Hmm.. my RedHat 7.3 does not seem to have that PPD file. There was awhile back
an error in one of the CUPS PPD files for PCL printers, which I discovered when
trying to use it with Wine on my LaserJet 4V (PCL). I don't remember exactly
where the error was, but I am pretty sure it was on a line that included
"CloseUI". I sent a correction off to the EasySW folks, and they said it would
be included in the next version. If you want to send the PPD file to me, I can
take a look at it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=993>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 510, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=993
Summary: Some PPD files from CUPS+GIMP-print do not work
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: semzx(a)newmail.ru
WINE does not accept a ppd file from CUPS 1.1.x+GIMP-print 4.2.0 that corresponds to HP
DeskJet 600 Series (/usr/share/cups/model/en_GB/pcl-600.ppd.gz in RedHat 7.3
installation). The error message is:
err:psdrv:PSDRV_PPDGetNextTuple Error in line '*CloseUI *stpBrightness
'?
(The linebreak was present in the output).
I can mail the ppd file on request. The problem is not windows-application-specific. I
have no real Windows installation.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=993>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=774
------- Additional Comments From steve.farley(a)sciatl.com 2002-08-27 14:29 -------
I get the same behavior on 20020804 with KDE 3 (RH 7.3)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=774>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=509
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mstefani(a)redhat.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=509>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=992
Summary: wine freezes when galeon is running
Product: Wine
Version: 20020411
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: salga(a)safe-mail.net
Any wine process freezes (kill -9 required) when running galeon. Without
running galeon, or by just running mozilla instead, wine runs just fine. note
that galeon keeps running fine. It's wine that freezes.
Procedure to make wine freeze:
- Run an application under wine
- Start galeon
- Load http://www.slashdot.org in galeon
- Wine should be frozen by now
My configuration:
- Linux 2.4.19 on a dual Athlon
- galeon 1.2.5
- mozilla 1.0.0
- (codeweavers-)wine 20020411-6
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=992>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=989
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-26 21:22 -------
It looks like you have not set up your ~/.wine/config file
Warning: could not find wine config [Drive x] entry for current working
directory /windows/C/findus; starting in windows directory.
Warning: /windows/C/findus/findus.exe not accessible from a configured DOS drive
Warning: /windows/C/findus/findus.exe not accessible from a configured DOS drive
/usr/local/bin/wine: cannot find '/windows/C/findus/findus.exe'
It looks like you need something like this.
[Drive C]
"Path" = "/windows/C"
"Type" = "hd"
"Filesystem" = "vfat"
You might find the following link usefull
http://www.winehq.org/Docs/wine-user/
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=989>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=61
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |Speeddymon(a)yahoo.com
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=61>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=651
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-26 21:10 -------
Doh! Marking as RESOLVED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=651>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=651
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-26 21:09 -------
You should open an new bug report for each bug you encounter.
Marking bug as RESOLVED as per reporters Comments.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=651>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=991
Summary: Microsoft close combat 3 trial will not install.
Product: Wine
Version: 20020710
Platform: PC
URL: http://download.microsoft.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I've downloded microsoft close combat trial, the installer loads, but when I
lcick on install it goes in crash, shell output is:
$ einr Mscc3.exe
wine: Unhandled exceptiopn, starting debugger...
err:win:WIN_FindWndPtr windows 10021 belongs to other process
err:win:WIN_FindWndPtr windows 10021 belongs to other process
Terminated
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=991>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=651
------- Additional Comments From puoti(a)inwind.it 2002-08-26 14:03 -------
The installation now works, but the software won't run, shall I open a new bug
about the software, as the installer works, or shall I use the same bug?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=651>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=654
------- Additional Comments From puoti(a)inwind.it 2002-08-26 13:56 -------
In any case, no, its not an installer that uses installshield, it's the standard
MS trial installer, you can try it by going on download.microsoft.com, and
downloading any trial program.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=654>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=990
------- Additional Comments From apa3a(a)yahoo.com 2002-08-26 09:54 -------
Created an attachment (id=278)
The screenshots which show the error messages
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=990>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=990
------- Additional Comments From apa3a(a)yahoo.com 2002-08-26 09:49 -------
Created an attachment (id=277)
The test application
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=990>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=990
Summary: winedbg generates a lot of error messages for symbol
information for cygwin dll
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: apa3a(a)yahoo.com
I compiled myself a cygwin installer. I'm trying to run it with cygwin.dll,
taken from cygwin installation. Cygwin calls Wine unimplemented functions. This
causes winedbg to fire up. The debugger first prints a lot of error messages
about symbol information, then correct information about unimplemented function.
Steps to reproduce:
1. Set Wine to run in nt40 mode ([Version] section in the config file).
2. Run the attached cygwin installer, it will try to call functions
NetWkstaUserGetInfo. I'm working now on implementation of stubs for this call.
To reproduce this bug be sure you have record:
@ stub NetWkstaUserGetInfo
in your dlls/netapi32/netapi32.spec file.
3. The installer crashes when it calls the NetWkstaUserGetInfo function of
netapi32.dll. The debugger consold window appears and it scrolls for a few
minutes long error messages. Below I include screenshots of the debugger window.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=990>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=807
------- Additional Comments From l.capriotti(a)tiscali.it 2002-08-26 09:37 -------
Unfortunately i'm not aware of the availability of the runtime sources. The
behaviour you described is exactly the one I've faced.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=989
------- Additional Comments From katjaundsiegfried.haas(a)t-online.de 2002-08-26 04:13 -------
I haven any clue, how this all works? Is anybody out there to give me some addvise?
Thank's
Siegfried
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=989>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=989
------- Additional Comments From katjaundsiegfried.haas(a)t-online.de 2002-08-26 04:11 -------
Created an attachment (id=276)
depugreport
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=989>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=989
------- Additional Comments From katjaundsiegfried.haas(a)t-online.de 2002-08-26 04:11 -------
Created an attachment (id=275)
debugoutput
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=989>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=989
Summary: Pettersson und Findus
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: katjaundsiegfried.haas(a)t-online.de
The programm Pettersson und Findus doesn't work.
How can I attach the bugreport files wine created?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=989>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
48 NEW PrgWin95/98: System metrics differ from the Win9x value
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
84 ASSI Rewrite documentation for Running Wine chapter
90 NEW Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
392 NEW Endless loop of redrawing a constantly growing windoq
397 NEW System hangs while trying to play a sound
413 NEW age of camelot needs wininet.InternetOpenUrlA
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
480 NEW Convert HBITMAP to a void* (references: 311)
481 NEW Convert HBRUSH to a void* (references: 249)
484 NEW Convert HFONT to a void* (references: 200)
486 NEW Convert HINSTANCE to a void* (references: 308)
487 NEW Convert HKEY to a void* (references: 362)
488 NEW Convert HMENU to a void* (references: 279)
500 NEW Convert HRGN to a void* (references: 179)
501 NEW Convert HRSRC to a void* (references: 86)
507 NEW Convert HDC to a void* (references: 804)
508 NEW Convert HANDLE to a void* (references: 1219)
509 NEW Convert HWND to a void* (references: 3486)
517 NEW Could not load wprocs.dll
529 NEW Running Perl regression tests on Windows
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
532 NEW DLL Separation: gdi32 from ttydrv, x11drv (BITMAP_Drive
533 NEW DLL Separation: gdi32 from ttydrv, x11drv (PALETTE_Driv
534 NEW DLL Separation: gdi32 from ttydrv, x11drv (color init)
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
539 NEW DLL Separation: x11drv from user32 (caret)
540 NEW DLL Separation: x11drv from user32 (clipboard)
541 NEW DLL Separation: x11drv from user32 (drag and drop)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
544 NEW DLL Separation: x11drv from ntdll (Options)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
548 NEW DLL Separation: user32 from ntdll (ATOM_Init)
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: aRts driver (only sometimes - wodDsCreate Di
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
821 NEW grpconv.exe -o -> loaded .so but dll imm.dll still not
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
826 NEW Wine has exited with code error 1 HELP!!
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
910 NEW foreground is the same as background color in winmx / s
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
963 NEW Default values for wineconsole are not saved
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=657
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rossaki(a)libero.it
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-24 21:26 -------
*** Bug 985 has been marked as a duplicate of this bug. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=657>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=985
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-24 21:26 -------
Looks to me as a duplicate of bug 657
*** This bug has been marked as a duplicate of 657 ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=985>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=975
------- Additional Comments From uh_ja(a)gmx.net 2002-08-24 21:18 -------
I have found that when using a native msvcrt.dll, it fixes the hang with the
install.exe. So the problem lies in wine's msvcrt.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=975>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=763
------- Additional Comments From roz(a)one.net 2002-08-23 16:28 -------
Disregard attachment. Bugtracker keeps taking me to the next bug after I modify
one.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=763>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=763
------- Additional Comments From roz(a)one.net 2002-08-23 16:27 -------
Created an attachment (id=273)
300 line relay trace of "underwithholding" bug
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=763>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=988
Summary: Age of empires conquerors expantion trial won't install.
Product: Wine
Version: 20020710
Platform: PC
URL: http://download.microsoft.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I tried to install Age of empires conquerors expantion trial, but I get this
message "System files were updated, you must reboot before continuing", is there
a way to solve this? I think that, considering the number of apps that ask for
reboots, there sould be a boot simulation libwine app, like you have in
crossover office when you install office 2000.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=988>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=987
Summary: Age of empires 2 trial dosn't install correctly
Product: Wine
Version: 20020710
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: puoti(a)inwind.it
I donwloded the trial of age of empires 1 and 2, the installer blocks when
installing arial.ttf, wine dosen't run until you don't delete it, the game sruns
fine once instaled with windows or winex, if you are intrested in this bug you
can download it for free, just go to microsoft.com/games/age2 go to the download
section and download the trial file.
I found this bug on a Mandrake 8.2 system, XFree86 4.2, gcc 3.0.4, wine-20020710
from rpm, KDE3, Openglide woking OK, scanner and printer working with sane and
cups, glibc 2.2.4
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=987>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=986
Summary: OBDC.dll unimplemented
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
While attempting to clean install MS Office 2000 Pro, using Windows Installer 2,
just after the enter license key stage, it caught a Signal 11 with these messenges:
Could not load 'ODBC.DLL' required by '(AME)', error=2
Could not load 'ODBC.DLL' required by '(AME)', error=2
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=986>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=985
Summary: win32: No implementation for...
Product: Wine
Version: 20020310
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rossaki(a)libero.it
Hi
i'm Alessandro. I try to use wine that i found in RED HAT 7.3.
I installed a program: TinMessanger. All ther installation precceded correctly.
The program need a file: mfc42.dll. I found it on the net and copyed in tinMessanger directory. But now i get his
error:
err:win32:PE_fixup_imports No implementation for MFC42.DLL.6880 imported from F:\tinMessanger\TinMessenger.exe,
setting to 0xdeadbeef
err:win32:PE_fixup_imports No implementation for MFC42.DLL.6663 imported from F:\tinMessanger\TinMessenger.exe,
setting to 0xdeadbeef
err:win32:PE_fixup_imports No implementation for MFC42.DLL.6571 imported from F:\tinMessanger\TinMessenger.exe,
setting to 0xdeadbeef
This is all the info i can supply.
Bye
Alessandro
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=985>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=984
------- Additional Comments From duncan(a)emarketeers.com 2002-08-22 09:01 -------
Created an attachment (id=271)
CrossoverOffice debug log for EccoPro4.0 crash
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=984>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=984
------- Additional Comments From duncan(a)emarketeers.com 2002-08-22 09:00 -------
Hi,
I've been trying to run EccoPro 4.0. In both the latset wine build (20020804)
and the CodeWeavers CrossoverOffice build (20020710) I get a crash when I
activate a particular tab.
Raw output from Wine is:
[duncan@duncan Ecco]$ wine ecco32.exe
fixme:keyboard:RegisterHotKey (0x00010039,256,0x00000003,83): stub
fixme:file:LockFile not implemented in server
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
fixme:scroll:ScrollBarWndProc Unimplemented style SBS_SIZEBOX.
wine: Unhandled exception, starting debugger...
err:seh:start_debugger Couldn't start debugger ("debugger/winedbg 134681632
160") (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
err:win32:_EnterSysLevel (0x407acb24, level 2): Holding 0x4085f604, level 3.
Expect deadlock!
etc.
I have attached a debug listing from the CXOffice debug log.
Duncan
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=984>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=984
Summary: Crash in x11Drv running EccoPro 4.0
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: duncan(a)emarketeers.com
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=984>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=983
Summary: FIXME:int21:DOS3Call Unimplemented FAT32 int32 function
7303
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: mcbridematt(a)hotmail.com
I tried installing FS2002, which I had already installed on Windows
running setup.exe on the cdrom, I incurred the message shown above and the
program said that I needed Win98 or Later,well? My Wine is setup to imitate winme
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=983>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=251
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|dlacko(a)codeweavers.com |wine-bugs(a)winehq.com
------- Additional Comments From fgouget(a)codeweavers.com 2002-08-21 12:31 -------
Not sure about the status. I reassigned the bug to Dusan
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=251>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=955
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From apa3a(a)yahoo.com 2002-08-21 12:04 -------
Great! Closing the bug per reporter's comments.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=955>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=980
------- Additional Comments From apa3a(a)yahoo.com 2002-08-21 11:57 -------
You mean steam.dll.so, not steam.so.dll, right? :-P
Anyway, try to find out what references this dll and what is supposed to provide
it. As I already mentioned it is not a standard Windows/Wine dll. Check if your
applications have it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=980>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=251
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |dlacko(a)codeweavers.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=251>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=61
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |Speeddymon(a)yahoo.com
Status|REOPENED |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=61>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=955
jacobvi123(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jacobvi123(a)hotmail.com 2002-08-20 23:11 -------
oops, i didnt know i had left this bug open, sorry, i went onto the IRC channel for KDE, and found out that the problem was that i needed to clear some temporary files (ksocket-<username>, and kde-<username> folders needed to be deleted in the /tmp directory) and that fixed the problem.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=955>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=982
Summary: Installing Simply Accounting Setup
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: michael(a)linuxmagic.com
It quits with very little debug information.
Now on to another one.. SImply Accounting Installer... By AccPac..
The installer quits with only minimal debug output..
Looks ot be in the X11DRV.DLL,
Latest Debian unstable..
<snipped>
(0x408d7000) No debug
information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40983000)
Unhandled exception: page fault on write access to 0x0040b7fe in 32-bit code
(0x00404512). In 32-bit mode.
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x408b0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40858000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEAUT32.DLL'
(0x408d7000) No debug
information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40983000)
Unhandled exception: page fault on write access to 0x0040b7fe in 32-bit code
(0x00404512). In 32-bit mode.
0x00404512 (Setup.exe.EntryPoint+0x29a8 in D:\Simply\Setup.exe): andw
$0,0x0(%esi)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40858000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEAUT32.DLL'
(0x408d7000) No debug
information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40983000)
Unhandled exception: page fault on write access to 0x0040b7fe in 32-bit code
(0x00404512). In 32-bit mode.
0x00404512 (Setup.exe.EntryPoint+0x29a8 in D:\Simply\Setup.exe): andw
$0,0x0(%esi) Wine-dbg>
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLEAUT32.DLL'
(0x408d7000) No debug
information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40983000)
Unhandled exception: page fault on write access to 0x0040b7fe in 32-bit code
(0x00404512). In 32-bit mode.
0x00404512 (Setup.exe.EntryPoint+0x29a8 in D:\Simply\Setup.exe): andw
$0,0x0(%esi) Wine-dbg>
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x40983000)
Unhandled exception: page fault on write access to 0x0040b7fe in 32-bit code
(0x00404512). In 32-bit mode.
0x00404512 (Setup.exe.EntryPoint+0x29a8 in D:\Simply\Setup.exe): andw
$0,0x0(%esi) Wine-dbg>
Unhandled exception: page fault on write access to 0x0040b7fe in 32-bit code
(0x00404512). In 32-bit mode.
0x00404512 (Setup.exe.EntryPoint+0x29a8 in D:\Simply\Setup.exe): andw
$0,0x0(%esi) Wine-dbg>
In 32-bit mode.
0x00404512 (Setup.exe.EntryPoint+0x29a8 in D:\Simply\Setup.exe): andw
$0,0x0(%esi) Wine-dbg>
0x00404512 (Setup.exe.EntryPoint+0x29a8 in D:\Simply\Setup.exe): andw
$0,0x0(%esi) Wine-dbg>
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=982>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=981
------- Additional Comments From levon(a)movementarian.org 2002-08-20 17:10 -------
Created an attachment (id=270)
+treeview,+timer log
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=981>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=981
Summary: Kazaa Lite 1.72: err:treeview:TREEVIEW_HandleTimer got
unknown timer
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: levon(a)movementarian.org
+timer,+treeview log attached. This happens when you do a search
and the list of results is displayed.
More detailed logs available on request (except +relay !!)
I am using native win98se DLLs as follows :
[AppDefaults\\kazaa.exe\\DllOverrides]
"shlwapi" = "native"
"shdocvw" = "native"
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=981>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=980
------- Additional Comments From tmdraney(a)yahoo.com 2002-08-20 17:03 -------
Sorry. Just steam.so.dll. Thats what it is telling me at least. Says that and
starts the debugger. Something is not clicking with wine and freebsd's
opengl/x11 in there somewhere and if that if fixed all will be well in the world.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=980>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=823
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |h.davies1(a)physics.ox.ac.uk
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 14:28 -------
Huw, are you going to work on this?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=823>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=843
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |andi(a)rhlx01.fht-esslingen.de
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 14:27 -------
Andi,
it seems I can't change status of this bug to UNASSIGNED. Nobody will find
this bug while it is assigned to "wine-bugs". At least it won't be lost if it is
assigned to you.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=843>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=856
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |marcus(a)jet.franken.de
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 14:24 -------
Forwarding to Marcus as he is working on it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=856>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=843
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |apa3a(a)yahoo.com
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=843>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=953
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 13:53 -------
Closing.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=953>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=953
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 13:52 -------
Closing per reporter's comments
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=953>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=953
------- Additional Comments From ronis(a)onsager.chem.mcgill.ca 2002-08-20 13:41 -------
I use slackware (basically 8.0 with lots of upgrades); kernel 2.4.19.
I did a cvs update today and built. The problem seens to be fixed. (No,
configure doesn't complain).
Interestingly the build line is still:
gcc -o hlp2sgml hlp2sgml.o hlpfile.o
i.e., no extra libraries
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=953>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=948
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 13:26 -------
Philip, do you have any progress with your issue?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=948>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=953
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 13:25 -------
David,
does "configure" give you any error messages?
What version/distribution of Linux do you use?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=953>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=955
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 13:22 -------
Adam,
so you don't know if this is a Wine issue or you changed something in the
configuration? I don't have KDE3, so I can't reproduce the issue.
I did a short search with google and found a few posts which mention the same
error message - 'Unknown protocol...'. One post advises to remove everything
KDE-related from the /tmp directory:
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&th=575bba0c0ae0f76f&rnum…
Try to do more research on Internet, ask for help on wine-users mailing list,
kde mailing lists, probably somebody will be able to help you.
Please report your findings here.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=955>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=971
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Regretion problem with Corel|Regression problem with
|Draw 10 |Corel Draw 10
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 12:35 -------
Yes, one should never use native user.exe in wine.
Raul, you can do regression testing to find the patch which broke your
application. It is one of the simplest and efficient debugging methods. You can
find instructions how to do the regression testing here:
http://www.winehq.org/docs/wine-devel/cvs-regression.shtml
It will take about 7 iterations to find a day of the patch.
Can you do this?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=971>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=980
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 12:18 -------
Merritt, you built Wine from sources, right?
What is the correct name of the dll - you refer one time to it as "steam.dll",
other time as "stream.dll".
I don't see dll with such name in my installation (current CVS Wine on Linux), I
don't think it is references anywhere inside Wine. I also can't find such dll on
my Windows NT machine.
Is this the application dll? Search your fake windows/applications directory for it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=980>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=979
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 12:07 -------
Mike, you are welcome to fix this bug.
I advise you to ask your questions on the wine-devel mailing list.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=979>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=977
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |andi(a)rhlx01.fht-esslingen.de
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 12:04 -------
Andi, I remember you worked with reboots handling.
Could you look at this bug report?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=977>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=976
------- Additional Comments From apa3a(a)yahoo.com 2002-08-20 12:01 -------
I have winspool.drv.so in /usr/local/lib/wine. Do you have it there or in any
other Wine library directory?
Boris, do you install Wine from source? Did the compilation finish successfully?
If yes, try to go to directory dlls/winspool in the source tree and run
"make install" from there to see if the library will be installed.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=976>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=980
Summary: FreeBSD does not build steam.dll.so
Product: Wine
Version: 20020804
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tmdraney(a)yahoo.com
When building on FreeBSD stream.dll.so does not build. When trying to play
Half-Life in OpenGL mode it starts but then says "The selected OpenGL mode is
not supported by your video card." The truth is it is supported. Looking at
the console output it says "err:module:BUILTIN32_dl.open failed to load .so lib
for builtin steam.dll: Cannot open "/usr/local/lib/wine/steam.dll" I looked in
the folder and it is no where to be found while may other of the same time of
files exist there. Wine + OpenGL + FreeBSD are not playing nicely.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=980>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=926
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 19:28 -------
havent been able to try it just yet, but i will append the results when i get
a chance.. for now resolving as worksforme
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=926>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=657
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 19:25 -------
by the by, after installing the right native mfc42.dll i was able to get the
program running, only problem is that i couldn't link it to diablo ii due to
the way ipc works right now, see bug #475 for more info
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=657>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=731
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 19:24 -------
closing
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=731>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=717
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |REMIND
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 19:12 -------
marking it as a reminder
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=717>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=721
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |REMIND
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 19:12 -------
update: never got around to checking the font code, give me til the end of the
year at the earliest..
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=721>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=717
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 19:09 -------
update 2: computer went down late june and i havent gotten it fixed just yet,
waiting on a replacement motherboard (lucky it was still under warranty),
either way though, after reviewing the notes here, I kinda like Andiry's Idea
of an "unknown" icon better anyways, in fact what we could do would be to
extract the "unknown" icon from shell32.dll (the one with the ms logo on a
sheet of paper) and use that, install it with wine and if the target of a
shell link doesn't exist, at least the icons get created, and then that way
someone doesn't have to learn command line (linux newbies)...
-Dustin
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=717>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=61
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|REMIND |
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 18:51 -------
reopening, someone else please assign to me, thanks, read the previous
comments to see why i am hesitant to accept it just yet..
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=61>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=61
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |REMIND
------- Additional Comments From Speeddymon(a)yahoo.com 2002-08-19 18:50 -------
oops, mistake...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=61>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=979
------- Additional Comments From cheako911(a)yahoo.com 2002-08-19 16:11 -------
I'd like to help add support to wine for this feature, thought being unemployed
I don't know how mutch time I can spend.
What I need at this point is some example code(from a windows app like jetadmin)
and a pointer to what files I'd have to add/change functions in.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=979>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=979
Summary: Broadcast packets don't get sent onto wire.
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cheako911(a)yahoo.com
There is a problem with the network code that affects HP's jetadmin(.exe) and
Half-Life(? maby others). In the jetadmin case there is no dialog to enter IPs
or MACs so broadcast packets are needed for this program to work at all.
Jetadmin should send ought a broadcast packet asking for all the printers to
respond, this packet is not receved by my other computers. I don't know what
calles jetadmin uses to produce these packets.
I can make logs avalible on request.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=979>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=975
------- Additional Comments From rindolf(a)directvinternet.com 2002-08-19 14:41 -------
I tried it with desktop enabled, but it didn't act any differently, just made
a black window open.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=975>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=975
------- Additional Comments From rindolf(a)directvinternet.com 2002-08-19 14:38 -------
Created an attachment (id=269)
Same as previous, only with CVS as of 20021819
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=975>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=973
nt-(a)gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |nt-(a)gmx.de
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=973>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=975
------- Additional Comments From johane(a)lysator.liu.se 2002-08-19 14:12 -------
Have you tried enabling the Desktop option to see if there is any difference?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=975>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=931
------- Additional Comments From dusanv(a)cadlink.com 2002-08-19 13:39 -------
The bug appears to be in BITBLT_InternalStretchBlt. It only happens when
PerfectGraphics is on.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=931>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=681
paulm(a)astro.gla.ac.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From paulm(a)astro.gla.ac.uk 2002-08-19 11:51 -------
Looks like patch:
http://cvs.winehq.com/patch.py?id=102885566385316432740456
fixed this bug by correcting a broken regression test. The problem was an
out-by-one error in calculating a buffer size.
Can someone confirm that this is correct?
Cheers,
Paul.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=681>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.