Re: [2/6] winhttp: Allow winhttp to use wininet.h with winhttp.h

2008-07-20 Thread Kari Hurtta
inet-common -- \-- winhttp ie. move common code to wine-inet-common (or whatever name used) and implement both wininet and winhttp on top of wine-inet-common / Kari Hurtta

Re: replying to wine-devel?

2007-12-06 Thread Kari Hurtta
rride or rewrite this > >> field and replace it with the email address of the mailing list. > > You're supposed to reply-all. > > > Most mailing lists have the reply-to field set for to mailing list address. There seems to have List-Post: <mailto:wine-devel@winehq.org> > James / Kari Hurtta

[OT] Re: [PATCH 2/7] gdi: Implement BiDi classification of characters

2007-09-17 Thread Kari Hurtta
quot;0003-gdi-Implement-BiDi-classification-of-characters-and.pat"; filename*1="ch" - Looks like RFC 2231: "MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations" Perhaps there is some bug in RFC 2231 parser on gmail. / Kari Hurtta

Re: Question some code in server/request.c

2007-03-06 Thread Kari Hurtta
ined places. Code assumes that 'dir' is for "/dir1/dir2" 1) Code crashes if there is no '/' on 'dir' at all. and 2) Code does wrong thing if dir is just "/dir2" Perhaps it should be: /* first create the base directory if needed */ p = strrchr( server_dir, '/' ); if (p && p > server_dir) { *p = 0; create_dir( server_dir, &st ); /* now create the server directory */ *p = '/'; } create_dir( server_dir, &st ); > Cheers, > > Paul. / Kari Hurtta

Re: appdb rating inflation

2007-01-06 Thread Kari Hurtta
Kari Hurtta <[EMAIL PROTECTED]> writes in gmane.comp.emulators.wine.devel: > Alexander Nicolaysen Sørnes <[EMAIL PROTECTED]> writes > in gmane.comp.emulators.wine.devel: > > > Onsdag 03 januar 2007 21:46, skrev Kari Hurtta: > > > "Ch

Re: appdb rating inflation

2007-01-05 Thread Kari Hurtta
Alexander Nicolaysen Sørnes <[EMAIL PROTECTED]> writes in gmane.comp.emulators.wine.devel: > Onsdag 03 januar 2007 21:46, skrev Kari Hurtta: > > "Chris Morgan" <[EMAIL PROTECTED]> writes in > gmane.comp.emulators.wine.devel: > > > On 03 Jan 2007 16

Re: appdb rating inflation

2007-01-04 Thread Kari Hurtta
>>> Tony Lambregts [ Charset UTF-8 unsupported, converting... ] > Kari Hurtta wrote: > > "Dan Kegel" <[EMAIL PROTECTED]> writes in gmane.comp.emulators.wine.devel: > > > > This App is definately not platinum. It does not "run flawlessly out of

Re: appdb rating inflation

2007-01-04 Thread Kari Hurtta
"Chris Morgan" <[EMAIL PROTECTED]> writes in gmane.comp.emulators.wine.devel: > On 03 Jan 2007 16:34:21 +0200, Kari Hurtta <[EMAIL PROTECTED]> wrote: > > "Dan Kegel" <[EMAIL PROTECTED]> writes in gmane.comp.emulators.wine.devel: > > > >

Re: appdb rating inflation

2007-01-03 Thread Kari Hurtta
gives platinium. So first item on http://appdb.winehq.org/ says "don't trust me". / Kari Hurtta ( Some other maintenaivers have give rating 'Garbage' for this application :-) )

Re: How do I get the unix filename for a wine handle?

2006-06-26 Thread Kari Hurtta
Eric Pouech <[EMAIL PROTECTED]> writes: > Christoph Probst wrote: > > >Hi. > > > >Alexandre Julliard wrote: > > > > > >>You can't do that in general. In Unix a file can have multiple names, > >>or even none at all, there's simply no way to get a filename from a > >>handle. On Linux you can use /p

Re: riched20: EM_GETLINE implementation and test

2006-06-23 Thread Kari Hurtta
uot;", if anything. The point is that > WCHAR blah[] ={...} will work for every compiler. Well, perhaps you then need also special options if you use L"..." man gcc: -fshort-wchar Override the underlying type for wchar_t to be short unsigned int instead of the default for the target. This option is useful for building programs to run under WINE. / Kari Hurtta

Re: wine audio testing results

2006-05-19 Thread Kari Hurtta
x27; is not attachment. It is asking display it inline! 'Content-Disposition: attachment' is asking show particular mime part as attachment. / Kari Hurtta

Re: wine audio testing results

2006-05-19 Thread Kari Hurtta
Information in Internet Messages: The Content-Disposition Header Field / Kari Hurtta

Re: ptrace single-stepping change breaks Wine

2005-01-29 Thread Kari Hurtta
> + if (!tsk->ptrace & PT_DTRACE) === > + goto clear_TF; > + } > } Perhaps, I'm stupid. But is there something strange on that test of tsk->ptrace variable? Before that PT_DTRACE was cleared from that same tsk->ptrace variable. / Kari Hurtta