Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 431 → Rev 432

/kernel/branches/flat_kernel/core/dll.inc
246,9 → 246,8
 
align 4
srv_handlerEx:
test ebx, ebx
jz .fail
; add ebx, new_app_base
cmp ebx, OS_BASE
jae .fail
 
mov eax, [ebx+handle]
cmp [eax+SRV.magic], ' SRV'
257,9 → 256,6
cmp [eax+SRV.size], SRV_SIZE
jne .fail
 
; add [ebx+input], new_app_base
; add [ebx+output], new_app_base
 
stdcall [eax+SRV.srv_proc], ebx
ret
.fail:
437,8 → 433,6
mov ecx, [off]
mov edx, [bytes]
mov esi, [buffer]
; sub ebx, new_app_base
; sub esi, new_app_base
 
mov [cmd], eax
mov [offset], ecx
448,10 → 442,12
mov byte [buff+4], al
mov [name], ebx
 
mov eax, 70
lea ebx, [cmd]
; sub ebx, new_app_base
int 0x40
pushad
push eax
lea eax, [cmd]
call file_system_lfn
pop eax
popad
ret
endp