Summer of Code 2011 is on!

2011-03-18 Thread Maarten Lankhorst
Hi all, As you may have known wine has been accepted for summer of code 2011 as a mentoring organization. As such the wine project is now looking for students to participate this year with wine. On our wiki page[1] you can find some ideas, but if you come up with your own idea you will have a

Re: clusapi: add stub for GetClusterInformation

2011-03-18 Thread Michael Stefaniuc
On 03/18/2011 06:53 PM, Wolfram Sang wrote: Content-Type: text/plain; charset="us-ascii"; Format="flowed" I am out of ideas if this is acceptable for wine-patches@, though:) I'd clearly say no because it obviously produces unpredictable results :) They are discouraged in kernel-space as well.

Vacation

2011-03-18 Thread Alexandre Julliard
Folks, There won't be any commits next week, since I'll be busy skiing. Next release should be on schedule two weeks from now. See you all in a week! -- Alexandre Julliard julli...@winehq.org

Re: urlmon: Use unescaped Urls for FTP actions (try 2)

2011-03-18 Thread Jacek Caban
Hi André, On 3/17/11 8:58 PM, André Hentschel wrote: ...don't leak path... --- dlls/urlmon/ftp.c | 16 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/dlls/urlmon/ftp.c b/dlls/urlmon/ftp.c index c9d43b8..a27d84c 100644 --- a/dlls/urlmon/ftp.c +++ b/dlls/urlm

Re: clusapi: add stub for GetClusterInformation

2011-03-18 Thread Wolfram Sang
Content-Type: text/plain; charset="us-ascii"; Format="flowed" I am out of ideas if this is acceptable for wine-patches@, though:) I'd clearly say no because it obviously produces unpredictable results :) They are discouraged in kernel-space as well. Regards, Wolfram

Re: [1/2] msvcrt: Implement _mbsupr_s (try2).

2011-03-18 Thread Dan Kegel
On Thu, Mar 17, 2011 at 11:19 PM, Konrad Rzepecki wrote: >> Tests might be in order... > > Probably you have right. But if you look at code support for multibyte case > change is in fact notexistent. I've only wrtite this code for my immediate > need - I've only adopted current _mbsupr to have cha

Re: clusapi: add stub for GetClusterInformation

2011-03-18 Thread Saulius Krasuckas
* On Fri, 18 Mar 2011, Nikolay Sivov wrote: > On 3/18/2011 11:04, Dmitry Timoshkov wrote: > > Konrad Rzepecki wrote: > > > > > +DWORD WINAPI GetClusterInformation(HCLUSTER hCluster, LPWSTR > > > lpszClusterName, LPDWORD lpcchClusterName, LPCLUSTERVERSIONINFO > > > lpClusterInfo) > > It look

Re: clusapi: add stub for GetClusterInformation

2011-03-18 Thread Nikolay Sivov
On 3/18/2011 11:04, Dmitry Timoshkov wrote: Konrad Rzepecki wrote: +/*** + * GetClusterInformation (CLUSAPI.@) + * + */ +DWORD WINAPI GetClusterInformation(HCLUSTER hCluster, LPWSTR lpszClusterName, L

Re: clusapi: add stub for GetClusterInformation

2011-03-18 Thread Dmitry Timoshkov
Konrad Rzepecki wrote: > +/*** > + * GetClusterInformation (CLUSAPI.@) > + * > + */ > +DWORD WINAPI GetClusterInformation(HCLUSTER hCluster, LPWSTR > lpszClusterName, LPDWORD lpcchClusterName, LPCLUSTERVERSIO

Re: [1/2] msvcrt: Implement _mbsupr_s (try2).

2011-03-18 Thread Konrad Rzepecki
Dnia piątek, 18 marca 2011, Dan Kegel napisał(a): > Konrad wrote: > > + c = _mbctoupper(_mbsnextc(s)); > > + /* Note that I assume that the size of the character is unchanged > > */ + if (c > 255) > > + { > > + *s++=(c>>8); > > + c=c & 0xff; > > + } > > +