Initial commit
This commit is contained in:
17
LIB386/LIB_SVGA/RECT.C
Normal file
17
LIB386/LIB_SVGA/RECT.C
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
#include "\projet\lib386\lib_sys\adeline.h"
|
||||
#include "\projet\lib386\lib_sys\lib_sys.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <dos.h>
|
||||
#include <i86.h>
|
||||
|
||||
void Rect( LONG x0, LONG y0, LONG x1, LONG y1, LONG coul )
|
||||
{
|
||||
Line( x0, y0, x1, y0, coul ) ;
|
||||
Line( x0, y1, x1, y1, coul ) ;
|
||||
Line( x0, y0, x0, y1, coul ) ;
|
||||
Line( x1, y0, x1, y1, coul ) ;
|
||||
}
|
||||
|
||||
/*ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ*/
|
||||
Reference in New Issue
Block a user