Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5597 → Rev 5598

/programs/cmm/lib/gui.h
1,5 → 1,14
//#include "strings.h"
#ifndef INCLUDE_GUI_H
#define INCLUDE_GUI_H
 
#ifndef INCLUDE_KOLIBRI_H
#include "../lib/kolibri.h"
#endif
 
#ifndef INCLUDE_STRING_H
#include "../lib/strings.h"
#endif
 
:void DrawRectangle(dword x,y,w,h,color1)
{
if (w<=0) || (h<=0) return;
168,4 → 177,6
col = strength * DSBYTE[color_image] / 10;
DSBYTE[color_image] = col;
}
}
}
 
#endif