Re: html browser for wine (khtml)

2003-01-09 Thread Alexandre Julliard
have to do it. I'm still hoping that we can find a way to avoid duplicating all that code inside Wine, C++ or not. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wrc: -v, -h, -w, -O res16

2003-01-09 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: Collapse -w16 into -O as res16. -w16 can apply to all modes, not only .res, so you would need to support 'asm16' and 'hdr16' too. It seems cleaner to keep it as a separate option. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] io.h friends

2003-01-09 Thread Alexandre Julliard
. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Registering DLL's

2003-01-09 Thread Alexandre Julliard
there will be less duplication. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wrc: -v, -h, -w, -O res16

2003-01-09 Thread Alexandre Julliard
often, and we probably wouldn't implement it today if it didn't exist. But it's here, it works, and it can potentially be useful to someone someday; there's nothing to gain by removing it. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] io.h friends

2003-01-09 Thread Alexandre Julliard
to replicate them in our environment. We need to define a portable solution that has a reasonable chance of working in all cases, even including cases that don't exist today. If it requires tweaking broken apps a bit that's acceptable. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Registering DLL's

2003-01-09 Thread Alexandre Julliard
the common functions and the dll-specific stuff; then when you want to do a new dll you copy a regsvr.c and modify the dll-specific parts. This also allows simplifying the code for dlls that don't need the complete support. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] io.h friends

2003-01-09 Thread Alexandre Julliard
safer, and it shouldn't break anything. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] msvcrt: defines break C++ code

2003-01-09 Thread Alexandre Julliard
think you have to link with oldnames.lib for that. We probably have to provide an oldnames.lib too. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wxWindows: it's official!

2003-01-08 Thread Alexandre Julliard
is to provide a way to write code that works both on Wine and on the original platform, so that once you have made it portable you don't need further changes. In this case the solution is unistd.h. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Registering DLL's

2003-01-08 Thread Alexandre Julliard
not very elegant to duplicate it, but it shouldn't be a lot of code anyway. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wxWindows: it's official!

2003-01-07 Thread Alexandre Julliard
to be Unix compatible, and under Unix access() is in unistd.h. So if the app needs access() it should include unistd.h; if it needs the other functions from io.h then it has to use msvcrt because they don't exist in the Unix libc. -- Alexandre Julliard [EMAIL PROTECTED]

Re: WIP RPC test code (RFC): rpc_K01-pre2.diff

2003-01-05 Thread Alexandre Julliard
. Simply setting the correct WINEDLLPATH should be enough (and runtest should be doing that already AFAICS). -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] __WINESRC__ public headers

2003-01-05 Thread Alexandre Julliard
then use the NONAMELESS defines to write more portable code, without having to duplicate the compiler checks. So the user's code can do something like: #include winnt.h #ifdef NONAMELESSUNION #define U(x) u.x #else #define U(x) x #endif -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] __WINESRC__ public headers

2003-01-05 Thread Alexandre Julliard
. What about all the other things I've mentioned? Should we do anything about them? And if yes, what? The extra flag values etc. should be removed, by fixing the code to not depend on extending the API that way. Of course that's easier said than done... -- Alexandre Julliard [EMAIL PROTECTED]

Re: #include directives

2003-01-05 Thread Alexandre Julliard
? ;-) Yes we should fix it, our headers should have the exact same dependency graph as the Windows ones. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] __WINESRC__ public headers

2003-01-05 Thread Alexandre Julliard
of these the code probably needs to be redesigned to not require API extensions. I don't know how, each one must be studied in detail. And there are probably other places where we have added Wine-specific flags without __WINESRC__ that will need to be fixed too. -- Alexandre Julliard [EMAIL

Re: More On Solaris ADDRESS_SPACE_LIMIT

2003-01-05 Thread Alexandre Julliard
there; and that routine can then be called the first time mmap returns such an address, so that it will work for all platforms that may have that problem. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/ library/debug.c include/wine/library.h i ...

2003-01-03 Thread Alexandre Julliard
. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/ library/debug.c include/wine/library.h i ...

2003-01-03 Thread Alexandre Julliard
a sane API in the first place. -- Alexandre Julliard [EMAIL PROTECTED]

Re: __WINE__ vs. __WINESRC__

2003-01-02 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: On January 1, 2003 07:40 pm, Alexandre Julliard wrote: I think __WINE__ is best, let's just rename the internal one. BTW this Cool, but to what? __WINESRC__? __WINEBUILD__? __WINEINTERNAL__? It doesn't really matter, just pick the one you prefer

Re: tchar fixes: _tcs{dup,icmp}

2003-01-02 Thread Alexandre Julliard
. It's not 100% compatible, but it should still do the right thing, both with and without msvcrt. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Make RECT === RECTL, fix compile warnings, use uniform format

2003-01-02 Thread Alexandre Julliard
into that. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Fixing include quotes (was: Re: conformance test for ShellExecute)

2003-01-02 Thread Alexandre Julliard
in fixing all the C files. It works fine the way it is now, the only thing that we need the change is the exported headers. -- Alexandre Julliard [EMAIL PROTECTED]

Re: tchar fixes: _tcs{dup,icmp}

2003-01-02 Thread Alexandre Julliard
to deal with all this? I don't think cygwin is really a big issue, it should be mostly Unix compatible, and it shouldn't be hard to work around the problems if any appear. I don't think we need any special infrastructure for that. -- Alexandre Julliard [EMAIL PROTECTED]

Re: __WINE__ vs. __WINESRC__

2003-01-02 Thread Alexandre Julliard
it...) -- Alexandre Julliard [EMAIL PROTECTED]

Re: Make RECT === RECTL, fix compile warnings, use uniform format

2003-01-02 Thread Alexandre Julliard
known structures. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine.m4 install bug

2003-01-02 Thread Alexandre Julliard
things outside of its own prefix. If you install Wine in a non-standard directory then you need to tell autoconf about it with the -I option. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Alexandre?

2003-01-01 Thread Alexandre Julliard
! -- Alexandre Julliard [EMAIL PROTECTED]

Re: __WINE__ vs. __WINESRC__

2003-01-01 Thread Alexandre Julliard
many of these ifdefs in our headers, and many of them could be removed IMO. -- Alexandre Julliard [EMAIL PROTECTED]

Re: RtlUnicodeStringToInteger prototype missing, and wrong?

2003-01-01 Thread Alexandre Julliard
... -- Alexandre Julliard [EMAIL PROTECTED]

Re: Set/WindowLong problem in user/win test

2003-01-01 Thread Alexandre Julliard
time make any difference? The behavior of SetWindowLong(GWL_HWNDPARENT) depends on the current parent, so calling it a second time with the same arguments is not necessarily a nop. -- Alexandre Julliard [EMAIL PROTECTED]

Re: winebuild -N generalization (take 2)

2002-12-23 Thread Alexandre Julliard
things and you shouldn't use the same option for both. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/. configure.ac configure

2002-12-23 Thread Alexandre Julliard
be fixed now. Thanks for the note. -- Alexandre Julliard [EMAIL PROTECTED]

Re: winebuild -N generalization (take 2)

2002-12-23 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: Yeah, that's why I said it's a hack. What about a new -F option? Sure that would be fine. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Conditional to support Solaris

2002-12-21 Thread Alexandre Julliard
ADDRESS_SPACE_LIMIT so that it's not used for normal allocations. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Some strange winedbg regression...

2002-12-21 Thread Alexandre Julliard
even when not needed will be a serious performance hit. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wineboot - Andy's version

2002-12-21 Thread Alexandre Julliard
complex and over-engineered. It has to be a simple application that doesn't require user interaction or a dozen configuration parameters. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Import or ntdll

2002-12-19 Thread Alexandre Julliard
Reactos etc. -- Alexandre Julliard [EMAIL PROTECTED]

Re: PATCH: implemented Fiber APIs

2002-12-17 Thread Alexandre Julliard
. Actually I have a patch that does this, I'll merge it in. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RESENT (20021013)]RelayExclude/Include

2002-12-16 Thread Alexandre Julliard
Uwe Bonnes [EMAIL PROTECTED] writes: Changelog: relay32/relay386.c: check_relay_include Treat whole dlls as advertised IMO the current behavior is correct. If the documentation says otherwise it needs to be fixed. -- Alexandre Julliard [EMAIL PROTECTED]

Re: regression - 'wine notepad.exe' now has fixme

2002-12-16 Thread Alexandre Julliard
at all; the error message is a bit misleading in that case. And if it didn't happen before then it's clearly a regression. -- Alexandre Julliard [EMAIL PROTECTED]

Re: stub handling

2002-12-16 Thread Alexandre Julliard
? We need to implement them, importing stubs no longer works (but of course you can do a stub implementation instead ;-) -- Alexandre Julliard [EMAIL PROTECTED]

Re: include msvcrt/ fix (take 2)

2002-12-16 Thread Alexandre Julliard
. This avoids having to do hacks in crtdll that will need to be removed later anyway. -- Alexandre Julliard [EMAIL PROTECTED]

Re: bug building regression tests under Mingw32

2002-12-14 Thread Alexandre Julliard
just want to build the tests only. See below for examples. That's a feature, it ensures that the tests get run again if the dll being tested has changed. If you can't build these dlls under mingw, you can simply create empty files instead. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Recent importlib changes

2002-12-14 Thread Alexandre Julliard
. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Wineboot

2002-12-13 Thread Alexandre Julliard
if it has to be launched manually at first; we can worry about automating it later. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Houston, we have a problem...

2002-12-12 Thread Alexandre Julliard
down a lot. makedep doesn't change often enough for this to be a real problem; and a make clean will fix it anyway. -- Alexandre Julliard [EMAIL PROTECTED]

Re: make checklink broken?

2002-12-12 Thread Alexandre Julliard
option. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Houston, we have a problem...

2002-12-12 Thread Alexandre Julliard
a long time ago. The only difference now is that makedep complains if it cannot find a include and says nothing for a include, but otherwise they work just the same. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/tools mingwrap.c

2002-12-12 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: Either way, we need to fix this somehow. IMO our headers should be fixed, they shouldn't have the msvcrt prefix. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Houston, we have a problem...

2002-12-12 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: In which case, shouldn't our includes use instead of ? Using is not 100% correct, let alone non standard. I know, minor point, but... :) I guess they should, yes. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/tools mingwrap.c

2002-12-12 Thread Alexandre Julliard
. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/tools mingwrap.c

2002-12-12 Thread Alexandre Julliard
outside of msvcrt, but I certainly don't see any reason to not use excpt.h along with the Unix headers. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/ tools/winebuild/winebuild.man.in tools/w ...

2002-12-12 Thread Alexandre Julliard
the .def file directly and skip the intermediate step of building a library object file. Hope this helps... -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/ tools/winebuild/winebuild.man.in tools/w ...

2002-12-12 Thread Alexandre Julliard
for the time being. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/ programs/winhelp/Makefile.in dlls/user/M ...

2002-12-10 Thread Alexandre Julliard
in certain (broken) setups, so I think it's safer to add it. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/tools mingwrap.c

2002-12-10 Thread Alexandre Julliard
include path if they install Wine in a non-standard directory. This shouldn't be a common case anyway. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wpp

2002-12-09 Thread Alexandre Julliard
, speed penalties, etc.). Frankly, this ranks about as high on the priority list as the strcat optimizations in makedep. Are there really no more real problems to solve that we need to spend so much effort inventing new ones? -- Alexandre Julliard [EMAIL PROTECTED]

Re: wpp

2002-12-08 Thread Alexandre Julliard
that the C preprocessor would handle non C code correctly. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wrc options

2002-12-08 Thread Alexandre Julliard
windres. We don't use all the features in the Wine building process but that's not a reason for removing them. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wrc options

2002-12-08 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: I know that wrc does more than windres. I was just asking if some of these options are superfluous. In particular, do we need to support win16 resources? Yes we do, some of our 16-bit dlls have resources. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wine/dlls Maketest.rules.in Makedll.rules.in

2002-12-07 Thread Alexandre Julliard
committed that stuff yet... -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] winewrap

2002-12-06 Thread Alexandre Julliard
machines, etc. -- Alexandre Julliard [EMAIL PROTECTED]

Re: what to do with include/wine/obj_base.h?

2002-12-06 Thread Alexandre Julliard
the macros they have to be put inside one of the standard headers, which wouldn't be very clean. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] winewrap

2002-12-06 Thread Alexandre Julliard
. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] winewrap

2002-12-06 Thread Alexandre Julliard
, so it would be possible to identify them. But actually I could hack winebuild to do that itself, and then simply get rid of the -r option. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Janitorial Projects

2002-12-06 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: Thanks! Alexandre, shouldn't we install these as well? Yes, the DDK ones should be installed I think. toolhelp.h probably not, it's a 16-bit thing that Winelib apps are not supposed to use. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] winewrap

2002-12-06 Thread Alexandre Julliard
on that. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] winewrap

2002-12-06 Thread Alexandre Julliard
can find a way to merge everything into winebuild cleanly. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Let --disable-debug actually do something

2002-12-06 Thread Alexandre Julliard
depend on config.h. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RESENT] Batch support for CreateProcess (2 of 3)

2002-12-06 Thread Alexandre Julliard
); +WCMD_parameter (p, 2+negate+test, s); This doesn't look right. The number of parameters doesn't depend on the result of the test. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Let --disable-debug actually do something

2002-12-06 Thread Alexandre Julliard
something like: make clean make all EXTRADEFS=-DNO_DEBUG_MSGS -- Alexandre Julliard [EMAIL PROTECTED]

Re: Fix the winmm/wave tests

2002-12-06 Thread Alexandre Julliard
wave.c touch wave.ok err:wave:wodOpen Rate doesn't match (requested 200 Hz, got 48000 Hz) err:wave:wodOpen Rate doesn't match (requested 200 Hz, got 48000 Hz) wave.c:145: Test failed: opening the device at 2MHz should fail 0: rc=4 -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] wrc windres

2002-12-05 Thread Alexandre Julliard
then I much prefer the approach of creating a dummy .o and handling that in the wrapper tool. It's still ugly but at least it's much less complexity to maintain for such an IMO minor feature. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Use COMSPEC command interpreter to run .bat files.

2002-12-04 Thread Alexandre Julliard
. But then of course we should rename it consistently everywhere, not just in wineinstall. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Registering DLL's

2002-12-04 Thread Alexandre Julliard
support everything we need for that. The main missing feature is the user interface feedback on the install progress, but we can probably live without that at first. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Registering DLL's

2002-12-04 Thread Alexandre Julliard
, you should have some kind of register CLSID function that takes a CLSID and uses StringFromCLSID or whatever to create the corresponding registry key. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Fwd: Re: [putty]Winelib support + patch

2002-12-03 Thread Alexandre Julliard
as PE too. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wtypes.idl patch

2002-12-03 Thread Alexandre Julliard
people are going to review the auto-generated stuff anyway. Just do what's easiest for you. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Reducing the header maze (warning: long, unsuitable for children)

2002-12-03 Thread Alexandre Julliard
, that's why we should get rid of it all, and use the exact same include names and dependencies as Windows. Anything else is a nightmare to maintain. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Compiling out the debug messages

2002-12-03 Thread Alexandre Julliard
. where should I see the NO_DEBUG_MSGS) It should be in include/config.h. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Fwd: Re: [putty]Winelib support + patch

2002-12-03 Thread Alexandre Julliard
will generate references into the ELF GOT so you need to do the fixups there, which is basically what an ELF loader does. What we do for functions is to make the ELF loader link to our version of the function, and then jump to the real one; but of course this cannot work with variables. -- Alexandre

Re: strcat+strcat+strcat == baaad

2002-12-02 Thread Alexandre Julliard
of the right size, and then you can use standard strcpy/strcat/sprintf/etc. without worrying about lengths. -- Alexandre Julliard [EMAIL PROTECTED]

Re: strcat+strcat+strcat == baaad

2002-12-02 Thread Alexandre Julliard
. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Fwd: Re: [putty]Winelib support + patch

2002-12-02 Thread Alexandre Julliard
. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Cabinet update

2002-12-02 Thread Alexandre Julliard
things down and makes no difference for the app. We should only add it if/when we really need it. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Janitorial Projects

2002-12-02 Thread Alexandre Julliard
believe should be possible). Not only possible, it's already implemented: apt-get install mingw32 ./configure make crosstest -- Alexandre Julliard [EMAIL PROTECTED]

Re: strcat+strcat+strcat == baaad

2002-12-01 Thread Alexandre Julliard
apply it? After all he took the time to submit it too... -- Alexandre Julliard [EMAIL PROTECTED]

Re: strcat+strcat+strcat == baaad

2002-11-30 Thread Alexandre Julliard
of strcats. And I don't think we need to worry about this kind of micro-optimizations right now... -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] Wine headers

2002-11-29 Thread Alexandre Julliard
instead of being directly under wine/, but it's not too bad. As long as you don't change anything in the source tree I could be convinced to go along with that... -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] Winelib enhancements

2002-11-28 Thread Alexandre Julliard
ELF binary). This also (mostly) solves the Running issues: you still have a .exe.so file, but you don't really need to worry about it. You simply run foo and everything works. -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] Winelib enhancements (wrc)

2002-11-28 Thread Alexandre Julliard
don't break the current .res support that wouldn't matter too much I guess. -- Alexandre Julliard [EMAIL PROTECTED]

Re: What about the MONITORINFOEX fix?

2002-11-27 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: What happened with this patch by Patrik: Committed on 11/18... -- Alexandre Julliard [EMAIL PROTECTED]

Re: Some fixes in capabilities

2002-11-26 Thread Alexandre Julliard
to be done at startup so you need to handle that too. A way would be to start with +relay, turn it off with wine_dbg_parse_options, and then turn it on again when needed. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Wrong list for last 3 patches

2002-11-26 Thread Alexandre Julliard
Vincent BĂ©ron [EMAIL PROTECTED] writes: Sorry, the last 3 patches were sent to the wrong list. At least they weren't big. Alexandre, do you want me to resend them to wine-patches proper? No need, I grabbed them from here. Just don't do it again g -- Alexandre Julliard [EMAIL PROTECTED]

Re: [RFC] pthread emulation on FreeBSD (and Linux)

2002-11-25 Thread Alexandre Julliard
-- Alexandre Julliard [EMAIL PROTECTED]

Re: Doubleclick in systray (was Pegasus Mail 4.02)

2002-11-25 Thread Alexandre Julliard
*/ DLGWINDOWEXTRA, /* extra */ -- Alexandre Julliard [EMAIL PROTECTED]

Re: About picture format.

2002-11-25 Thread Alexandre Julliard
, the values for cp936 byte2 apparently go from 0x40 to 0xfe. Any cp936 experts out there? -- Alexandre Julliard [EMAIL PROTECTED]

Re: Fwd: Re: [putty]Winelib support + patch

2002-11-25 Thread Alexandre Julliard
it again with some linker magic, now that apps no longer link to dlls directly. That's definitely something we should try to do as part of the making winelib more user-friendly task. -- Alexandre Julliard [EMAIL PROTECTED]

<    1   2   3   4   5   6   7   8   9   10   >