http://bugs.winehq.org/show_bug.cgi?id=3011
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|err:int:DOSVM_Int2fHandler |int2f ax=7b00 uninmplemented
|int2f |
------- Additional Comments From marcus(a)jet.franken.de 2005-30-05 00:50 -------
int2f with ax=7b00 is probably a lowlevel entry into the minilink device
driver.
Ralph Browns interrupt list does not contain a reference to this code.
what does this app do? Is it useful in the Linux context, where the network
itself is handled by the Linux tools?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2985
------- Additional Comments From marcus(a)jet.franken.de 2005-30-05 00:43 -------
WINEDEBUG=+seh,+relay wine nlnotes.exe >logfile 2>&1
then look for the place where it starts "winedbg" (just the first mention
of it in the logfile).
then take like 1000 lines above that and attach here.
the initial logfile will be very large, but this cant be avoided.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3012
------- Additional Comments From marcus(a)jet.franken.de 2005-30-05 00:39 -------
What exact function reference d3d9.dll?
however, yes, directx 9 work is still in progress and not finished.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3014
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
------- Additional Comments From marcus(a)jet.franken.de 2005-30-05 00:37 -------
just a normal bug like hundred others :/ ... not blocking wine release I
think.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3014
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #905|application/octet-stream |text/plain
mime type| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3004
------- Additional Comments From marcus(a)jet.franken.de 2005-30-05 00:26 -------
fixme:wave:DSD_CreateSecondaryBuffer ... might expose problems with sound
err:dsound:DSOUND_MixInBuffer length not a multiple of block size, len = 9635,
block size = 4 ... problematic.
fixme:ddraw:gltex_download_texture This is not supported yet. ... harmless
like you say
Only the dsound problems seem relevant. Do you hear sound during gameplay?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2764
------- Additional Comments From jarto(a)starsoft.fi 2005-29-05 23:48 -------
Testing Wine-200505024:
- bug #1 is fixed.
- bug #2 can still be reproduced.
- ^C doesn't freeze the program any more.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3016
Summary: SetTextJustification() not implemented in ps driver
Product: Wine
Version: CVS
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keithdunwoody(a)yahoo.com
PSDRV_ExtTextOut() doesn't use the information provided by
SetTextJustification(), so doesn't properly justify text.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3015
Summary: CreateDirectory() creates "C:" with incorrect
GetLastError() value
Product: Wine
Version: 20050419
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mark7(a)alumni.cmu.edu
CreateDirectory() appears to return a different GetLastError() value in Wine and
Windows for the root of a drive. This causes several installers I've used to
fail. The following example code spits out a GetLastError() value of 5
(ERROR_ACCESS_DENIED) on my Linux box, and 183 (ERROR_ALREADY_EXISTS) on a
friend's Windows box (sorry, didn't check which version of Windows, but almost
certainly XP). The same thing happens with "C:" or "C:\". Wine does seem to
correctly return ERROR_ALREADY_EXISTS for other (non-root-of-a-Wine-drive)
directories that already exist, like "C:\Program Files".
#include <windows.h>
#include <stdio.h>
int main(void)
{
int retval;
int errcode;
retval = CreateDirectory("C:", 0);
errcode = GetLastError();
printf("retval is %d, getlasterror is %d\n", retval, errcode);
}
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.