Initial commit

This commit is contained in:
Gwen Gourevich
2021-10-27 10:34:18 +02:00
parent 43ad18eb04
commit c5f4f6ba25
199 changed files with 73169 additions and 0 deletions

17
LIB386/LIB_SVGA/RECT.C Normal file
View 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 ) ;
}
/*ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ*/