CMM: general refactoring

git-svn-id: svn://kolibrios.org@7227 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2018-04-15 22:44:36 +00:00
parent 83b61f94d2
commit 1392a1c519
28 changed files with 194 additions and 235 deletions

View File

@@ -621,20 +621,6 @@ inline fastcall dword GetStartTime()
CreateThread(#_EventRedrawWindow,#REDRAW_BUFF_EVENT_+4092);
}
:struct rect
{
dword x,y,w,h;
void set_size();
};
:void rect::set_size(dword _x, _y, _w, _h)
{
x=_x;
y=_y;
w=_w;
h=_h;
}
:struct _screen
{
dword width,height;