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
> 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
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
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