2007-10-15 12:45:36 +02:00
|
|
|
;****************************************************
|
2007-11-19 18:44:47 +01:00
|
|
|
;*****************move of GUI component**************
|
2007-10-15 12:45:36 +02:00
|
|
|
;****************************************************
|
|
|
|
;IN
|
2007-11-19 18:44:47 +01:00
|
|
|
;MoveComponent(dword Parend,dword Control,dword newx,dword newy)
|
2007-10-15 12:45:36 +02:00
|
|
|
;newy
|
|
|
|
;newx
|
|
|
|
;Control
|
|
|
|
;Parend
|
|
|
|
;OUT
|
|
|
|
;not
|
|
|
|
|
|
|
|
align 4
|
|
|
|
|
2007-11-19 18:44:47 +01:00
|
|
|
move_component:
|
2007-10-15 12:45:36 +02:00
|
|
|
|
|
|
|
mov ebx,[esp+4] ;Control
|
|
|
|
mov ecx,[esp+8] ;new x
|
|
|
|
mov edx,[esp+12] ;new y
|
|
|
|
|
|
|
|
mov [ebx+24],ecx
|
|
|
|
mov [ebx+28],edx
|
|
|
|
|
|
|
|
ret 12
|