Subversion Repositories Kolibri OS

Rev

Rev 3076 | Rev 3107 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3076 Rev 3081
Line 333... Line 333...
333
	$mov cl, 10
333
	$mov cl, 10
334
	$int 0x40
334
	$int 0x40
335
	$pop ecx
335
	$pop ecx
336
	$pop ebx
336
	$pop ebx
337
}
337
}
-
 
338
 
-
 
339
inline fastcall void debugch( ECX)
-
 
340
{
-
 
341
	$mov eax,63
-
 
342
	$mov ebx,1
-
 
343
	$int 0x40
-
 
344
}
338
//------------------------------------------------------------------------------
345
//------------------------------------------------------------------------------
Line 339... Line 346...
339
 
346
 
340
void DefineAndDrawWindow(dword x,y, sizeX,sizeY, byte WindowType,dword WindowAreaColor, EDI, ESI)
347
void DefineAndDrawWindow(dword x,y, sizeX,sizeY, byte WindowType,dword WindowAreaColor, EDI, ESI)
341
{
348
{
Line 458... Line 465...
458
inline fastcall void DeleteButton( EDX)
465
inline fastcall void DeleteButton( EDX)
459
{
466
{
460
	EAX = 8;
467
	EAX = 8;
461
	EDX += BT_DEL;
468
	EDX += BT_DEL;
462
	$int 0x40;
469
	$int 0x40;
463
}
-
 
464
>
470
}
-
 
471
>