Re: FAQ: Update the ports section

2003-09-11 Thread Fabian Cenedese
>Thats the problem! >You have your fine dictonary in hand, so you think you know how to speak >english... but when you visit a english speaking country the people >you speak to look like a deer caught in a spot light! >In other words sure ... Shachar... is 100% correct. I will give him that!

Re: missing ordinals in avifil32

2003-09-11 Thread Francois Gouget
On Wed, 10 Sep 2003, Alexandre Julliard wrote: > Dave Miller <[EMAIL PROTECTED]> writes: > > > The first 59 ordinals seem to match in all windows versions. Add > > ordinals to avifil32.spec to match windows. > > Unless ordinals are actually needed, it's better not to add them. In > that case the

Re: FAQ: Update the ports section

2003-09-11 Thread Kelly Leahy
First of all, I'd like to say that it really bothers me that someone who claims to be a native english speaker (not sure who made the comment originally) would argue that "are" is in valid grammatical usage in the "sentence" (footnote 1): "the list are now up to date" (IN ANY STATE OR COUNTRY for t

Re: FAQ: Update the ports section

2003-09-11 Thread Ivan Leo Murray-Smith
The original sentence that started this is >The following list are the x86 operating systems supported by from twickline_at_skybest.com http://www.winehq.org/hypermail/wine-devel/2003/09/0356.html He claims he knows 3 types of slang, and is from west virginia, but he never claimed to be "A native

Re: BuildCommDCB conformance test

2003-09-11 Thread Dimitrie O. Paun
On September 11, 2003 01:32 am, Kevin Groeneveld wrote: > If my previous patch to BuildCommDCB is applied, then the test runs ok. Looks good. Send it over to wine-patches to be included in the tree. -- Dimi.

RE: TreeView control - set correct hwndNotify

2003-09-11 Thread Igor Grahek
CreateWindowEx set parent to GetDesktopWindow by default and if cs->hwndParent is null or if cs->hwndParent == HWND_MESSAGE it stays that way. Maybe check can be changed this way: +infoPtr->hwndNotify = lpcs->hwndParent; +if(!infoPtr->hwndNotify || infoPtr->hwndNotify == HWND_MESSAGE) +

Re: [winecfg 8] Complete drive edit dialog, warn on lack of C drive, implement drive delete, code cleanups

2003-09-11 Thread Dimitrie O. Paun
On 11 Sep 2003, Mike Hearn wrote: > ChangeLog: > - All settings in the drive edit dialog are now instant apply This is a cool feature, but we should keep it optional. Our primary audience are Windows users, and they are not used to that. Heck, even I am not used to it, I am used to be able to pla

Re: [winecfg 8] Complete drive edit dialog, warn on lack of C drive, implement drive delete, code cleanups

2003-09-11 Thread Mike Hearn
On Thu, 2003-09-11 at 16:20, Dimitrie O. Paun wrote: > This is a cool feature, but we should keep it optional. Our primary > audience are Windows users, and they are not used to that. Heck, > even I am not used to it, I am used to be able to play around with > stuff in dialogs, and than press CANCE

Re: [winecfg 8] Complete drive edit dialog, warn on lack of C drive, implement drive delete, code cleanups

2003-09-11 Thread Dimitrie O. Paun
On 11 Sep 2003, Mike Hearn wrote: > drive edit is probably one of those areas), but in others the only value > I can see for having a cancel button is to follow what Windows (which > basically doesn't having much of a HIG at all) and KDE (which typically > follows windows) do. Having revert/close

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-11 Thread Mike Hearn
On Wed, 10 Sep 2003 19:13:18 -0400, Sir Kevin Atkinson scribed thus: > But can I say I need this block of memory (ie an arbitrary block which > already has data in it) to be shared. Yes, I think so, the main problem is that setting up a SHM segment is a bit expensive, so you want to reuse it on

Re: BuildCommDCB conformance test

2003-09-11 Thread Dmitry Timoshkov
"Kevin Groeneveld" <[EMAIL PROTECTED]> wrote: > Here is my first attempt at a conformance test for the BuildCommDCB > functions. It does not cover very many cases yet, but I thought I would > post what I have so far in case I am going about this the wrong way. > > I compiled this with MSVC and i

Re: Unable to cimpile wineproc

2003-09-11 Thread Eric Pouech
It could maybe be done with a full dbghelp implementation, but I think it should also be possible to come up with a specialized interface just for that need, that should be easier to do. That code is really too ugly to get in... one solution would be to store in wineserver the address of a couple o

Re: Unable to cimpile wineproc

2003-09-11 Thread Dimitrie O. Paun
On Thu, 11 Sep 2003, Eric Pouech wrote: > > Well, it makes sense to knowledgeable Linux users, but that's not > > really our main audience. I was thinking we could find a name that > > would make it a bit clearer to Windows users what this is about. > if we take the windows comparison, that would

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-11 Thread Dan Kegel
Kevin wrote: BTW: You can find my C API at http://kevin.atkinson.dhs.org/avisynth_c/. Avisynth: http://www.avisynth.org/. And a dead simple program as the test case for the bug http://bugs.winehq.org/show_bug.cgi?id=1707 . That test case involves compiling a program with mingw. Can you compile th

Re: Indent to get Avisynth working with Wine/Winelib

2003-09-11 Thread Kevin Atkinson
On Thu, 11 Sep 2003, Dan Kegel wrote: > Kevin wrote: > > BTW: You can find my C API at http://kevin.atkinson.dhs.org/avisynth_c/. > > Avisynth: http://www.avisynth.org/. And a dead simple program as the > > test case for the bug http://bugs.winehq.org/show_bug.cgi?id=1707 . > > That test case i

error installing ikernel.exe

2003-09-11 Thread eric
Dear wine users: in my rh9, I try to run a video conference program, it first ask me to install DCOM95 from microsoft's site, I did it(with some error message, I did not fully mention) then I try my video conference program under wine, it soon pop out a window complain error installing ikerne

header problems

2003-09-11 Thread Dimitrie O. Paun
Hi folks, In each of the include/{pshpack[1248],poppack}.h headers we have checks like this: # if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(_MSC_VER) #pragma pack(1) # elif !defined(RC_INVOKED) #error "Adjusting the alignment is not supported with thi

TextOut text removed if hbrBackground is set

2003-09-11 Thread Igor Grahek
I have problem with following example. If wc.hbrBackground is set (line 16) text printed with TextOut is overpainted with that color. If I comment out that line everything is OK. Under windows this works fine. - code begin --- WNDCLASS wc; HWND hWineTest2Wnd; HD

Re: header problems

2003-09-11 Thread Alexandre Julliard
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > How do we solve this? Maybe change the last condition to: > > -# elif !defined(RC_INVOKED) > +# elif defined(WINE_HEADER_DEBUG_ON) > > or > > +# elif defined(__WINESRC__) > > or some such? I'd say just kill the #ifdef completely. We want packing

Re: error installing ikernel.exe

2003-09-11 Thread eric
On Thursday 11 September 2003 15:40, Sylvain Petreolle wrote: > this problem is known, see > http://www.winehq.org/hypermail/wine-users/2003/05/0075.html > > Dear Sylvain: Thanks your pointout, I download cvs rpm from http://wine.dataparty.no latest normal build but when I run, it have error as s

Re: header problems

2003-09-11 Thread Dimitrie O. Paun
On Thu, 11 Sep 2003, Alexandre Julliard wrote: > I'd say just kill the #ifdef completely. We want packing on all > compilers anyway. Here it is: ChangeLog Dimitrie O. Paun <[EMAIL PROTECTED]> Remove checks from {pop,psh}pack[1248].h that were causing the standalone processor to fail.

[cvs compile error in for MSI dll]

2003-09-11 Thread Evalet Olivier
I have to modify the *.c files (from the MSI dll) by adding this: #include Is this my configuration which is wrong? Olivier -- www.programmers.ch

Re: BuildCommDCB conformance test

2003-09-11 Thread Kevin Groeneveld
Dimitrie O. Paun wrote: On September 11, 2003 01:32 am, Kevin Groeneveld wrote: If my previous patch to BuildCommDCB is applied, then the test runs ok. Looks good. Send it over to wine-patches to be included in the tree. It's good to know I am on the right track. I want to add some more test

compiling mfc

2003-09-11 Thread Deji Akinyemi
Hi! Does anyone have a set of directives on how one goes about generating an MFC library for winelib from the sources? I just started the process, and got pass the mfc/atl configuration hic-ups. Now I am trying to get things to compile and that is another story. I am presently getting an error

Re: Word-splitting in the FAQ

2003-09-11 Thread Dan Kegel
On the general subject of spellchecking, there are a few typo lists and spellcheckers at http://www.kegel.com/kerspell/ which specialize in typos in C program comments... might be of some interest. One of them was contributed by Francois and has already been run on the Wine tree, I think... -- Dan

Re: [resend 3rd] additional NULL parameter checks within winmm.c

2003-09-11 Thread Alexandre Julliard
Oleg Prokhorov <[EMAIL PROTECTED]> writes: > Changelog: > Add more NULL parameter checks to winmm.c When adding NULL checks you have to explain why you think they are needed, and how you made sure you are not simply hiding another bug. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [winecfg 8] Complete drive edit dialog, warn on lack of C drive, implement drive delete, code cleanups

2003-09-11 Thread Robert Shearman
On Thursday 11 September 2003 4:39 pm, you wrote: > On Thu, 2003-09-11 at 16:20, Dimitrie O. Paun wrote: > > This is a cool feature, but we should keep it optional. Our primary > > audience are Windows users, and they are not used to that. Heck, > > even I am not used to it, I am used to be able to

Re: missing ordinals in avifil32

2003-09-11 Thread Dave Miller
Yes, I used the first method to make this patch. I added a web form to compare ordinals to the api db. I took the second method into consideration when I cleaned up glu32. I was going to add ordinals, but then realized they were alphabetized. I don't think I'm clear on what to do when there

Here is one - Linux on Cygwin on Linux

2003-09-11 Thread Steven Edwards
Here is a good one for someone to test. The User Mode Linux people have done it. They are working on a port of User Mode Linux to Win32. This has been something I have been wanting to see for a while so we can use Linux as our Posix subystem in ReactOS by moving parts of UMLwin32 in to back to

ReactOS and WINE development on AlphaAXP and others

2003-09-11 Thread Steven Edwards
Hello, HP has recently extended the loan I requested on this alpha pws500 workstation for another year. If anyone is interested in working on porting WINE or ReactOS to the alpha email me privatly and I can setup a account for you on the system. I have another system a friend has let me borrow fo

Can not uninstall CVS wine

2003-09-11 Thread eric
...### [100%] file /usr/bin/widl from install of wine-20030813-1rh9winehq conflicts with file from package wine-cvs-unstripped-20030911-1 file /usr/bin/wine from install of wine-20030813-1rh9winehq conflicts with file from package wine-cvs-unstripped-20030911-1

Re: Here is one - Linux on Cygwin on Linux

2003-09-11 Thread Sylvain Petreolle
This cant work now on Wine. This project uses a int 80 redirector loaded as a service, and we dont support VXDs. However I tried to launch the installer and it seems it shows a problem into our service installation routine, since it doesnt manage to create the registry keys for the new LinuxSysca

Re: Unable to cimpile wineproc

2003-09-11 Thread Alexandre Julliard
Steven Edwards <[EMAIL PROTECTED]> writes: > We have a very nice taskmanger in reactos CVS. It looks and acts just like > Windows taskmanger. It doesnt work under WINE atm because the NtQuery* APIs > are still buggy but if you wanted to use it and create a bastard step child > of ReactOS taskmana

configure new wine

2003-09-11 Thread eric
Dear cvs wine users: By reading the doc's install page, I success uninstall cvs 's wine reinstall 8/13' wine, then test again, it indeed repeat the ikernel problem, but it at least configure correct by default. So I copy /root/.wine/config to /root/oldwineconfig. Then uninstall it again as

Re: compiling mfc

2003-09-11 Thread Shachar Shemesh
IIRC, there were legal issues with this. Make sure that the MFC license allows you to redistribute the compiled code before you delve too deeply into this adventure. Shachar Deji Akinyemi wrote: Hi! Does anyone have a set of directives on how one goes about generating an MFC libra

Re: [winecfg 8] Complete drive edit dialog, warn on lack of C drive, implement drive delete, code cleanups

2003-09-11 Thread Fabian Cenedese
>3. I know the load order page isn't finished yet, but a dropdown box for the >load order with the options "builtin then native" and "native then builtin" >would be better than the radio buttons (but we should keep the explanation I haven't tried yet I was just wondering: What happens if a use