Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 113 → Rev 114

/kernel/trunk/core/sys32.inc
797,20 → 797,20
cld
shl esi,5
add esi,window_data
mov eax,[esi+WDATA.left]
mov eax,[esi+WDATA.box.left]
mov [dlx],eax
add eax,[esi+WDATA.width]
add eax,[esi+WDATA.box.width]
mov [dlxe],eax
mov eax,[esi+WDATA.top]
mov eax,[esi+WDATA.box.top]
mov [dly],eax
add eax,[esi+WDATA.height]
add eax,[esi+WDATA.box.height]
mov [dlye],eax
 
mov [esi+WDATA.left], 0
mov [esi+WDATA.width], 5
mov [esi+WDATA.box.left], 0
mov [esi+WDATA.box.width], 5
mov eax,[0xFE04]
mov [esi+WDATA.top],eax
mov [esi+WDATA.height], 5
mov [esi+WDATA.box.top],eax
mov [esi+WDATA.box.height], 5
xor eax, eax
mov [esi+16],eax
mov [esi+20],eax
/kernel/trunk/core/syscall.inc
143,6 → 143,7
dd sys_internal_services ; 68-Some internal services
dd sys_debug_services ; 69-Debug
dd file_system_lfn ; 70-Common file system interface, version 2
dd syscall_windowsettings ; 71-Window settings
 
times 255 - ( ($-servetable) /4 ) dd undefined_syscall