Re: user: add GetRawInputDeviceList stub (try 2)

2006-10-17 Thread Mike McCormack
Thanks for sending the patch! L. Rahyen wrote: +UINT WINAPI GetRawInputDeviceList(PRAWINPUTDEVICELIST pRawInputDeviceList, PUINT puiNumDevices, UINT cbSize) +{ +pRawInputDeviceList = NULL; That doesn't do what you think it does. You probably want: memset( pRawInputDeviceList, 0, sizeo

Re: user: add GetRawInputDeviceList stub

2006-10-16 Thread L. Rahyen
> Thank you for sending patch. Here are few problems with it you need to fix: Thanks for your tips. I'm sorry for doing some mistakes, but this is first time when I send patch and also I havn't experience in Wine development before. I hope I will contribute more complex and useful patch

Re: user: add GetRawInputDeviceList stub

2006-10-14 Thread Francois Gouget
On Fri, 13 Oct 2006, L. Rahyen wrote: [...] > +UINT WINAPI GetRawInputDeviceList(PRAWINPUTDEVICELIST pRawInputDeviceList, > PUINT puiNumDevices, UINT cbSize) You should also add a prototype for this function in winuser.h. Note that the convention is to not include the parameter names in the Win

Re: user: add GetRawInputDeviceList stub

2006-10-14 Thread Vitaliy Margolen
L. Rahyen wrote: > Add missing stub to user32.dll.so - without it some games (like Postal 2 and > some others) cannot run. It seems that GetRawInputDeviceList is useless thing > in most cases because all these games works almost perfectly with this stub. > Thank you for sending patch. Here are f