Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3828 → Rev 3829

/programs/media/zsea/buildall.bat
29,7 → 29,7
@kpack zSea_bin\plugins\scaling.obj
 
@copy zSea.ini zSea_bin\zSea.ini
@copy Docs\zSea_keys.txt zSea_bin\zSea_keys.txt
@copy Docs\zSea_keys_eng.txt zSea_bin\zSea_keys.txt
@copy buttons.png zSea_bin\buttons\buttons.png
 
 
/programs/media/zsea/dat_area.inc
56,7 → 56,7
rb 1024
;----------------------
temp_area:
rb 4096
rb 64*1024 ; new max cmdline 64 Kb
;----------------------
procinfo:
process_info:
/programs/media/zsea/zSea.asm
35,7 → 35,7
dd IM_END ; size of image
dd I_END ; memory for app
dd stacktop ; esp
dd temp_area ; I_Param
dd ext_dest_cmdline ; I_Param
dd path ; APPLICATION PACH
 
include 'lang.inc'
50,7 → 50,10
include '../../develop/libraries/box_lib/load_lib.mac'
@use_library ;use load lib macros
;******************************************************************************
 
ext_dest_cmdline:
dd 0xffffffff
dd temp_area
;------------------------------------------------------------------------------
START: ; start of execution
mcall 68, 11
mcall 66, 1,1
144,7 → 147,7
 
 
mov edi,string ; clear string
mov ecx,256/4 ; length of a string
mov ecx,4096/4 ;256/4 ; length of a string
xor eax,eax ; symbol <0>
rep stosd
 
165,7 → 168,7
add edi,4
.continue:
mov esi,edi
mov ecx,257 ; strlen
mov ecx,4095 ;257 ; strlen
repne scasb
lea ecx, [edi-temp_area]