Show free RAM size

git-svn-id: svn://kolibrios.org@4638 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Serhii Sakhno 2014-03-13 00:10:36 +00:00
parent 3144543b54
commit 3a8df05d00

View File

@ -153,7 +153,7 @@ void Main_Window()
break; break;
case evReDraw: case evReDraw:
sc.get(); sc.get();
DefineAndDrawWindow(170,150,314,270,0x74,sc.work,"Virtual Disk Manager 0.5.1",0); DefineAndDrawWindow(170,150,314,270,0x74,sc.work,"Virtual Disk Manager 0.5.2",0);
GetProcessInfo(#Form, SelfInfo); GetProcessInfo(#Form, SelfInfo);
if (Form.status_window>2) break; if (Form.status_window>2) break;
@ -225,12 +225,14 @@ unsigned int disk_pos_y[]={60,85,110,60,85,110,60,85,110,60,85,110};
void DrawTmpDisks() void DrawTmpDisks()
{ {
char free_ram_text[60]; char free_ram_text[60];
dword free_ram;
int i,FreeRAM=GetFreeRAM()/1024; int i,FreeRAM=GetFreeRAM()/1024;
DrawBar(0,51, Form.cwidth,Form.cheight-TOPPANELH-BOTPANELH-2, 0xFFFFFF); DrawBar(0,51, Form.cwidth,Form.cheight-TOPPANELH-BOTPANELH-2, 0xFFFFFF);
DrawBar(0,Form.cheight-BOTPANELH-1, Form.cwidth,1, sc.work_graph); DrawBar(0,Form.cheight-BOTPANELH-1, Form.cwidth,1, sc.work_graph);
DrawBar(0,Form.cheight-BOTPANELH, Form.cwidth,BOTPANELH, sc.work); DrawBar(0,Form.cheight-BOTPANELH, Form.cwidth,BOTPANELH, sc.work);
strcpy(#free_ram_text, FREE_RAM_TEXT); strcpy(#free_ram_text, FREE_RAM_TEXT);
strcat(#free_ram_text, itoa(FreeRAM)); free_ram = itoa(FreeRAM);
strcat(#free_ram_text, free_ram);
strcat(#free_ram_text, " MB"); strcat(#free_ram_text, " MB");
WriteText(10, Form.cheight-13, 0x80, sc.work_text, #free_ram_text); WriteText(10, Form.cheight-13, 0x80, sc.work_text, #free_ram_text);
if (disk_num==0) if (disk_num==0)