Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4673 → Rev 4674

/programs/cmm/lib/lib.obj/box_lib.h
17,6 → 17,10
 
dword PathShow_prepare = #aPathShow_prepare;
dword PathShow_draw = #aPathShow_draw;
 
dword progressbar_draw = #aProgressbar_draw;
dword progressbar_progress = #aProgressbar_progress;
 
$DD 2 dup 0
 
char aEdit_box_draw [9] = "edit_box\0";
42,7 → 46,10
char aPathShow_prepare [17] = "PathShow_prepare\0";
char aPathShow_draw [14] = "PathShow_draw\0";
 
char aProgressbar_draw [17] = "progressbar_draw\0";
char aProgressbar_progress[21] = "progressbar_progress\0";
 
 
struct PathShow_data
{
dword type;// dd 0 ;+0
100,4 → 107,19
work_size,// equ [edi+76]
all_redraw,// equ [edi+80]
ar_offset;// equ [edi+84]
};
 
struct pb //progressbar
{
dword value,
left,
top,
width,
height,
style,
min,
max,
back_color,
progress_color,
frame_color;
};