Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5821 → Rev 5822

/programs/games/xonix/trunk/kosSyst.cpp
392,7 → 392,7
Dword mainAreaColour,
Byte headerType,
Dword headerColour,
Dword borderColour
char *title
)
{
Dword arg1, arg2, arg3, arg4;
409,7 → 409,7
mov ecx, arg2
mov edx, arg3
mov esi, arg4
mov edi, borderColour
mov edi, title
int 0x40
}
}
726,6 → 726,17
}
 
 
// 48, 4 -- get skin height
Dword kos_GetSkinHeight()
{
__asm{
mov eax, 48
mov ebx, 4
int 0x40
}
}
 
 
// ôóíêöèÿ 70 äîñòóï ê ôàéëîâîé ñèñòåìå
Dword kos_FileSystemAccess( kosFileInfo *fileInfo )
{
816,7 → 827,18
}
 
 
// 71,1 set window caption
void kos_SetWindowCaption(char *caption)
{
__asm{
mov eax, 71
mov ebx, 1
mov ecx, caption
int 0x40
}
}
 
 
// âûçîâ àáñòðàêòíîãî ìåòîäà
int __cdecl _purecall()
{