Subversion Repositories Kolibri OS

Rev

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

Rev 3444 Rev 3458
Line 238... Line 238...
238
	$mov eax,68
238
	$mov eax,68
239
	$mov ebx,1
239
	$mov ebx,1
240
	$int 0x40
240
	$int 0x40
241
}
241
}
Line 242... Line 242...
242
 
242
 
243
inline fastcall void SendWindowMessage( ECX, EDX)
243
inline fastcall int SendWindowMessage( ECX, EDX)
244
{
244
{
245
	$mov eax, 72
245
	$mov eax, 72
246
	$mov ebx, 1
246
	$mov ebx, 1
247
	$int 0x40
247
	$int 0x40
Line 411... Line 411...
411
void WriteText(dword x,y,byte fontType, dword color, EDX)
411
void WriteText(dword x,y,byte fontType, dword color, EDX)
412
{
412
{
413
	EAX = 4;
413
	EAX = 4;
414
	EBX = x<<16+y;
414
	EBX = x<<16+y;
415
	ECX = fontType<<24+color;
415
	ECX = fontType<<24+color;
416
	ESI = 0;
-
 
417
	$int 0x40;
416
	$int 0x40;
418
}
417
}
Line 419... Line 418...
419
 
418
 
420
void WriteNumber(dword x,y,byte fontType, dword color, count, ECX)
419
void WriteNumber(dword x,y,byte fontType, dword color, count, ECX)