home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / gems / g_gemsi.lha / GraphicsGems / 2DClip / box.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-10  |  186 b   |  14 lines

  1.  
  2. /* 
  3.  * file box.h
  4.  *    a short include file is better then no include file
  5.  */
  6. typedef    struct    {        /* guess what this is        */
  7.     long    _lowx;
  8.     long    _lowy;
  9.     long    _highx;
  10.     long    _highy;
  11. } BOX;
  12.  
  13.  
  14.