Subversion Repositories Kolibri OS

Rev

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

Rev 3106 Rev 3107
Line -... Line 1...
-
 
1
//#include "strings.h"
-
 
2
 
1
void DrawRectangle(dword x,y,width,height,color1)
3
void DrawRectangle(dword x,y,width,height,color1)
2
{
4
{
3
	DrawBar(x,y,width,1,color1);
5
	DrawBar(x,y,width,1,color1);
4
	DrawBar(x,y+height,width,1,color1);
6
	DrawBar(x,y+height,width,1,color1);
5
	DrawBar(x,y,1,height,color1);
7
	DrawBar(x,y,1,height,color1);