http://bugs.winehq.com/show_bug.cgi?id=1803
------- Additional Comments From ryan(a)linux-gaming.com 2003-29-10 17:33 -------
Latest build from CVS.
Should i add something to the config?
e.g. "Windows" = "version"?
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1805
Summary: InternetCrackUrl incorrectly sets dwUrlPathLength
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jan_lists(a)sporbeck-family.de
Hi,
During some application testing, we discovered that WinE does not correctly
mimic the WinINet function InternetCrackUrl. The real WinAPI sets the
dwUrlPathLength member of the URL_COMPONENTS structure to additionally hold
the extra info of the given URL if the extra info is not requested as a
separate component. Although this behaviour is not well documented by the
Win SDK, it is for instance implemented on WinXP, Win2000 and WinME and
therefore might be considered to be intended by Microsoft.
The following lines of code demonstrate the problem:
LPCTSTR lpszURL = _T("http://www.myserver.com/myscript.php?arg=1");
URL_COMPONENTS url;
// call 1: crack out url path and extra info
::ZeroMemory(&url, sizeof(url));
url.dwStructSize = sizeof(url);
url.dwHostNameLength = 1;
url.dwUrlPathLength = 1;
url.dwExtraInfoLength = 1;
::InternetCrackUrl(lpszURL, 0, 0, &url);
// dwUrlPathLength is 13, holding "/myscript.php"
// call 2: only crack out url path
::ZeroMemory(&url, sizeof(url));
url.dwStructSize = sizeof(url);
url.dwHostNameLength = 1;
url.dwUrlPathLength = 1;
::InternetCrackUrl(lpszURL, 0, 0, &url);
// now, dwUrlPathLength should be 19, holding "/myscript.php?arg=1",
// while WinE still sets it to 13
OK, it is of course no great deal to write code that correctly runs on real
Win systems and on WinE (2-3 lines did it). But programers who rely on this
behaviour will for example wonder why their applications don't transmit any
HTTP GET parameters when they call HttpOpenRequest with lpszObjectName set
to the URL path component returned by InternetCrackUrl...
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1803
------- Additional Comments From dclark(a)akamail.com 2003-29-10 13:55 -------
Umm, PeekNamedPipe not implemented? What version of Wine are you using? That
function has been implemented in Wine for quite awhile.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1804
dclark(a)akamail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From dclark(a)akamail.com 2003-29-10 13:52 -------
This is a user error. Please ask user questions on wine-users. Filing a bug
report is not the appropriate method for getting help.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1804
Summary: Error in installation
Product: Wine
Version: 20030911
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fa_ebora(a)hotmail.com
this is a error when i install wine how i can fixed them...please help me ...
i don't what i can do for this error b'cos i'm a beginner user of linux...
[admin@localhost wine-20031016]$ ./tools/wineinstall
WINE Installer v0.74
Running configure...
configure: creating cache config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
Configure failed, aborting install.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1636
------- Additional Comments From gerdts(a)cae.wisc.edu 2003-28-10 21:41 -------
I have the same problem with Outlook 2000 and Crossover Office 2.1. OS is Red
Hat 9.
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1803
Summary: Steam Crashes With Fixme: errors.
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: ryan(a)linux-gaming.com
This was trying to get steam to run.
fixme:commctrl:InitCommonControlsEx Unknown class! dwICC=0x8000
fixme:win32:PeekNamedPipe function not implemented
client callback thread error
fixme:ole:CoCreateInstance no instance created for interface {00000000-0000-0000
-c000-000000000046} of class {8856f961-340a-11d0-a96b-00c04fd705a2}, hres is
0x8
0040111
--
Configure bugmail: http://bugs.winehq.com/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.com/show_bug.cgi?id=1801
ryan(a)linux-gaming.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From ryan(a)linux-gaming.com 2003-28-10 15:11 -------
I've figured out the problem in association with the bug, xfree-dga. I disabled it in xfree
and nothing crashes any longer.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.