Subversion Repositories Kolibri OS

Rev

Rev 2811 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2811 Rev 2818
Line 489... Line 489...
489
}
489
}
Line 490... Line 490...
490
 
490
 
491
void DefineButton(dword x,y,w,h,EDX,ESI)
491
void DefineButton(dword x,y,w,h,EDX,ESI)
492
{
492
{
493
 	EAX = 8;
-
 
494
	$push edx
-
 
495
	EDX += BT_DEL; //âíà÷àëå óäàëÿåì êíîïó ñ ýòè èä, ïîòîì ñîçäà¸ì
-
 
496
	$int 0x40;
493
 	EAX = 8;
497
	EBX = x<<16+w;
494
	EBX = x<<16+w;
498
	ECX = y<<16+h;
-
 
499
 	$pop edx
495
	ECX = y<<16+h;
500
	$int 0x40
496
	$int 0x40
Line 501... Line 497...
501
}
497
}
502
 
498