Re: HW address w/o connection in iphlpapi

2006-01-16 Thread Juan Lang
Hi Michael, > When you boot a linux box without an ethernet connection, and eth0 > configuration fails, GetAdaptersInfo does not return MAC address info > for eth0. > The problem seems to be that enumerateInterfaces (in > dlls/iphlpapi/ifenum.c) doesn't create a record for eth0, because > SIOCGIFC

HW address w/o connection in iphlpapi

2006-01-16 Thread most
We ran into an obscure problem with iphlpapi that I'd like to get help with. When you boot a linux box without an ethernet connection, and eth0 configuration fails, GetAdaptersInfo does not return MAC address info for eth0. The problem seems to be that enumerateInterfaces (in dlls/iphlpapi/ifenum.

Re: More implementation of IRecordInfo

2006-01-16 Thread Dan Kegel
In March 2005, in message http://www.winehq.com/hypermail/wine-patches/2005/03/0155.html, jacek wrote: > This patch makes IRecordInfo almost complete. > If anyone knows any application using it I could test on, > please let me know. The freely downloadable app TTQV4 fails at the moment; one of

Re: dlls/wined3d/device.c GetCreationParameters

2006-01-16 Thread Al Tobey
> Hi Al, > > Almost got it this time :) > You should be checking that pParameters is not NULL, not &This->createParms. > Note that if This is not-NULL, &This->creatParms will be not null as well > since > you are just getting the address of a struct. Also on failure, according to > MSDN, you shou

Re: dlls/wined3d/device.c GetCreationParameters

2006-01-16 Thread Aric Cyr
Al Tobey gmail.com> writes: > > Here is the new patch. I did some additional testing and couldn't > get the same app to fail on that function again. It still works with > this new patch, so I'm assuming for now that it's correct.Anyways, > thanks again. Hi Al, Almost got it this time :

Re: dlls/wined3d/device.c GetCreationParameters

2006-01-16 Thread Al Tobey
Here is the new patch. I did some additional testing and couldn't get the same app to fail on that function again. It still works with this new patch, so I'm assuming for now that it's correct.Anyways, thanks again. -Al Tobey On 1/16/06, Aric Cyr <[EMAIL PROTECTED]> wrote: > On 1/16/06, H

Re: [rpcrt4] Properly created named pipes

2006-01-16 Thread Thomas Weidenmueller
Oops...this meant to go to wine-patches Sorry about that. - Thomas

winspool: What can I do to get my Patches into CVS?

2006-01-16 Thread Detlef Riekenberg
Hi. What can I do to get my Patches into CVS? 2006.01.07: http://www.winehq.org/pipermail/wine-patches/2006-January/023276.html Changelog: - winspool/tests: filter more results 2006.01.08: http://www.winehq.org/pipermail/wine-patches/2006-January/023284.html Changelog: - kernel/tests: report onl

[rpcrt4] Properly created named pipes

2006-01-16 Thread Thomas Weidenmueller
Created the named pipes with the FILE_FLAG_OVERLAPPED flag, otherwise the call to ConnectNamedPipe() will block the server thread if no connection can be established, which causes the rpc server to dead-lock during startup. - Thomas -- P.S.: Please let me know if there's something wrong with th

Re: translation of wine/programs/wcmd/Ru.rc

2006-01-16 Thread Phil Krylov
On Mon, 16 Jan 2006 18:00:04 +0300 Roman <[EMAIL PROTECTED]> wrote: > I've translaten most of the messages There are some typos: +из другого bat-файла. При по завершении вывываемого командного файла, управление возвращается\n\ should be: +из другого bat-файла. По завершении вызываемого командн

Re: winbase.h dependency problems - dll separation issues

2006-01-16 Thread Eric Pouech
Mike McCormack wrote: winbase.h shouldn't be included when compiling ntdll, as it is the header for kernel32.dll. It's shouldn't be used in server as well (except for console, window management). The attached patch removes winbase.h from the server call headers, exposing a number of depende

Re: [MSACM] add file name trace to acmDriverAdd

2006-01-16 Thread Alex Villací­s Lasso
Robert Reif wrote: This patch justs adds some debugging information. Loading a native acm driver using acmDriverAdd seems to be broken. Passing the driver name to MSACM_RegisterDriver gets further along but doesn't fix the problem. --

Re: MSACM: implement acmDriverPriority with driver priority/enabled saving

2006-01-16 Thread Alex Villací­s Lasso
Alex Villací­s Lasso wrote: This patch implements acmDriverPriority(), including saving the priority order and the enabled/disabled status of each global driver to HKCU\\Software\\Microsoft\\Multimedia\\Audio Compression Manager\\Priority v4.00 . Also included the foundation for broadcast no

Re: MSACM: local drivers must not contribute to ACM_METRIC_COUNT_DRIVERS count

2006-01-16 Thread Alex Villací­s Lasso
Alex Villací­s Lasso wrote: This distinction makes a difference when local drivers can be loaded. Changelog: * Exclude local drivers from count when acmMetrics(ACM_METRIC_COUNT_DRIVERS) is computed Please disregard this patch, the original behavior was correct. Alex Villacís Lasso

Re: MSACM: return failure rather than assert with nAvgBytesPerSec == 0

2006-01-16 Thread Alex Villací­s Lasso
Alex Villací­s Lasso wrote: This check is necessary until local codec loading is in CVS. Failure scenario fixed is: app instructs to load local ACM codec, fails, doesn't notice failure, requests codec info, fails, again doesn't notice failure, submits zeroed structure to PCM converter --> ass

Re: compilation error: Undefined reference to strncmpW

2006-01-16 Thread Robert Shearman
Peter Lemenkov wrote: ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./shlwapi.spec assoc.o clist.o istream.o msgbox.o ordinal.o path.o reg.o regstream.o shlwapi_main.o stopwatch.o string.o thread.o url.o wsprintf.o shlwapi.res -o shlwapi.dll.so -L../../dlls -L../../dlls/oleaut3

Re: Loader Optimization

2006-01-16 Thread Rob Shearman
Alexandre Julliard wrote: Robert Shearman <[EMAIL PROTECTED]> writes: What sort of tests do you want? I don't think I'll be able to come up with anything that can be put into the Wine test framework. Agreed, it's probably not possible to put that in the test framework since it will n

compilation error: Undefined reference to strncmpW

2006-01-16 Thread Peter Lemenkov
Hello, All! = ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./shlwapi.spec assoc.o clist.o istream.o msgbox.o ordinal.o path.o reg.o regstream.o shlwapi_main.o stopwatch.o string.o thread.o url.o wsprintf.o shlwapi.res -o shlwapi.dll.so -L../../dlls

Re: dlls/wined3d/device.c GetCreationParameters

2006-01-16 Thread Al Tobey
Thanks for the feedback everybody. I'll rewrite it along with a test of some sort tonight. -Al Tobey On 1/16/06, Aric Cyr <[EMAIL PROTECTED]> wrote: > On 1/16/06, H. Verbeet <[EMAIL PROTECTED]> wrote: > > If the D3DDEVICE_CREATION_PARAMETERS struct got zeroed out before > > being passed to GetC

winbase.h dependency problems - dll separation issues

2006-01-16 Thread Mike McCormack
winbase.h shouldn't be included when compiling ntdll, as it is the header for kernel32.dll. The attached patch removes winbase.h from the server call headers, exposing a number of dependency problems in ntdll. wine_server_call_err seems to be misplaced in wine/server.h as it uses kernel32.

Re: dlls/wined3d/device.c GetCreationParameters

2006-01-16 Thread Aric Cyr
On 1/16/06, H. Verbeet <[EMAIL PROTECTED]> wrote: > If the D3DDEVICE_CREATION_PARAMETERS struct got zeroed out before > being passed to GetCreationParameters, DeviceType would now be 0 while > it was 1 (D3DDEVTYPE_HAL) before. I don't know if that's enough to > make things work. Yes good point. I

Re: Repackaging Mozilla ActiveX control to include MSVCP60.DLL?

2006-01-16 Thread Jonathan Ernst
Le dimanche 15 janvier 2006 à 07:40 -0800, Dan Kegel a écrit : > On 1/15/06, Ge van Geldorp <[EMAIL PROTECTED]> wrote: > > > The Mozilla ActiveX control download feature is cool and all, > > > but until we repackage the sucker to include MSVCP60.DLL to fix > > > http://bugs.winehq.org/show_bug.cgi?

Re: (no subject)

2006-01-16 Thread Marcus Meissner
On Mon, Jan 16, 2006 at 02:40:57PM +0530, Ananth M wrote: > Hi Maintainers, > >For the recent wine releases , is there any binary rpm's are available ? Sure. Just check http://sf.net/projects/wine/. Ciao, Marcus

(no subject)

2006-01-16 Thread Ananth M
Hi Maintainers, For the recent wine releases , is there any binary rpm's are available ? In the winehq.com I am able to get the following message only.. Binary packages are in the process of being built, but the source is available now. You can find out more about this release in the an

Re: dlls/wined3d/device.c GetCreationParameters

2006-01-16 Thread H. Verbeet
On 16/01/06, Aric Cyr <[EMAIL PROTECTED]> wrote: > Interesting that your original patch made things work at all... you set the > pParameters variable, which is then promptly forgotten upon return from the > function. In effect your original patch does nothing... so why it would make > things work