http://bugs.winehq.com/show_bug.cgi?id=825
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2002-06-27 12:16 -------
Created an attachment (id=191)
(720Kb testcase zipped)
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=825>.
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
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Platform| |All
Resolution| |WONTFIX
------- Additional Comments From apa3a(a)yahoo.com 2002-06-27 12:15 -------
No use 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=825
------- Additional Comments From apa3a(a)yahoo.com 2002-06-27 11:36 -------
Jason, could you attach the archive directly to the bug report?
I can't download it.
Use hyperlink "Create a new attachment".
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=825>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=827
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |mike_mccormack(a)start.com.au
------- Additional Comments From apa3a(a)yahoo.com 2002-06-27 10:26 -------
Mike, could you look at this 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=827>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=827
Summary: Running Agfa Photowise under Wine
Product: Wine
Version: 20020605
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tkujala(a)lut.fi
When Agfa Photowise tries to comminucate to the digital camera connected in
/dev/ttyS0, it tries to flush all file buffers using FlushFileBuffers()
Under linux, flushing /dev/ttyS0 seems to fail and FlushFileBuffers() will
return FALSE, which in turn causes Photowise to think that communication has failed.
Changing FlushFileBuffers() in files/file.c to always return TRUE, will make
Photowise to work perfectly, and finally I can use my old Agfa CL50 at full
115200 speed under linux.
The change I did was:
BOOL WINAPI FlushFileBuffers( HANDLE hFile )
{
BOOL ret;
SERVER_START_REQ( flush_file )
{
req->handle = hFile;
ret = !wine_server_call_err( req );
}
SERVER_END_REQ;
/* do not ever fail :) */
return TRUE;
/*return ret;*/
}
But this is not good, there probably should be some knowledge in the hFile,
which would tell the wineserver that this is a serial device and flushing
should be done in some other way (or not at all?).
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=827>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=825
Summary: Launched window treated as child window
Product: Wine
Version: CVS
Platform: PC
URL: http://www.the-edmeades.demon.co.uk/testdialog.zip
OS/Version: Windows 2000
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: us(a)the-edmeades.demon.co.uk
VB Program, launches another window and the launched window is clipped to the
boundaries of the launching window - On w2k it appears fine.
I have cut this down to a very small testcase:
Download the program from http://www.the-edmeades.demon.co.uk/testdialog.zip
and unzip it. wine testdialog.exe
Click on not modal, and window appears correctly
Click on modal, and window is clipped to the launching program (you only see a
small amount in one corner).
The VB code is:
Load formname
formname.show
or
formname.show vbModal
Traces available as required, but testcase should show problem clearly
Jason
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=825>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=730
apa3a(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From apa3a(a)yahoo.com 2002-06-26 15:03 -------
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=730>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=730
us(a)the-edmeades.demon.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Platform| |All
Resolution| |FIXED
------- Additional Comments From us(a)the-edmeades.demon.co.uk 2002-06-26 14:56 -------
Tested today and seems 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=730>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=824
Summary: \0 character is added to REG_MULTI_SZ registry values
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P1
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: apa3a(a)yahoo.com
Wine treats such values as strings, bug Windows processes them as binary values.
Following values list is imported and then exported with Windows regedit
correctly on Windows:
"Empty Value0"=hex(7):
"Empty Value1"=hex(7):00
"Empty Value2"=hex(7):01
On Wine the same Windows regedit exports this as:
"Empty Value0"=hex(7):00
"Empty Value1"=hex(7):00
"Empty Value2"=hex(7):01,00
Probably the problem exists because Wine treats this format as strings which
must have 0 character delimiter. Windows, probably processes this format as any
other binary format (according to the test and to the fact that Windows regedit
shows values of this type as binary).
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=824>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.