Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4592 → Rev 5051

/drivers/usb/usbhid/mouse.inc
34,7 → 34,7
proc mouse_driver_add_device
; Just allocate memory; no initialization needed.
movi eax, sizeof.mouse_device_data
call Kmalloc
invoke Kmalloc
ret
endp
 
44,7 → 44,7
proc mouse_driver_disconnect
; Free the allocated memory.
mov eax, edi
call Kfree
invoke Kfree
ret
endp
 
153,7 → 153,7
; in: edi -> mouse_device_data (pointer returned from mouse_driver_add_device)
proc mouse_driver_end_packet
; Call the kernel, passing collected state.
stdcall SetMouseData, \
invoke SetMouseData, \
[edi+mouse_device_data.buttons], \
[edi+mouse_device_data.dx], \
[edi+mouse_device_data.dy], \