Re: ntdll: Tests for RtlHashUnicodeString()

2013-07-15 Thread Nikolay Sivov
On 7/16/2013 09:47, Dmitry Timoshkov wrote: Nikolay Sivov wrote: +#include "ddk/wdm.h" Please don't do that, this breaks compilation with PSDK headers. If you need some specific definitions, types or API prototypes - replicate them in the test itself. What breaks exactly? The fact that PSDK d

Re: ntdll: Tests for RtlHashUnicodeString()

2013-07-15 Thread Dmitry Timoshkov
Nikolay Sivov wrote: > +#include "ddk/wdm.h" Please don't do that, this breaks compilation with PSDK headers. If you need some specific definitions, types or API prototypes - replicate them in the test itself. -- Dmitry.

Re: riched20: ITextDocument stubs for ITextServices

2013-07-15 Thread Frédéric Delanoy
On Sun, Jul 14, 2013 at 3:50 AM, Tiger Soldier wrote: > This patch implements a standalone stub of ITextDocument. The stub is > currently used in txtsrv.c and will replace the stub in richole.c > You have to use your real name when submitting patches to wine-patches. Frédéric

Re: [PATCH 1/3] user32/tests: Sleep enough time to make sure all input message have been processed.

2013-07-15 Thread Alexandre Julliard
Qian Hong writes: > On Fri, Jul 12, 2013 at 3:07 AM, Alexandre Julliard > wrote: >> Adding sleeps to work around timing issues is usually suspicious, > > Hello, how about this one? This looks like a better approach, yes (make sure to fix your tab size before submitting though, the indentation

Re: How to configure C++ implements in wine?

2013-07-15 Thread Charles Davis
On Jul 15, 2013, at 1:00 AM, 中川祥 wrote: > I'm working at User Access Logging API for Windows8. > It need C++ style coding. > How can I solve it? Those aren't C++ classes. Those are MOF classes. They're used with WMI. I'm sure you've seen how we implement WMI (cf. dlls/wbemprox). They do not nee

How to configure C++ implements in wine?

2013-07-15 Thread 中川祥
I'm working at User Access Logging API for Windows8. It need C++ style coding. How can I solve it?