home *** CD-ROM | disk | FTP | other *** search
/ MegaDoom Adventures / PMWMEGADOOM.iso / doom / creators / deu52gcc / src / contrib / bcc2grx / include / bgiext.h < prev    next >
C/C++ Source or Header  |  1993-04-07  |  2KB  |  48 lines

  1. /*
  2.  *  BCC2GRX  -  Interfacing Borland based graphics programs to LIBGRX
  3.  *  Copyright (C) 1993  Hartmut Schirmer
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Library General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Library General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Library General Public
  16.  *  License along with this library; if not, write to the Free
  17.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *
  20.  *  Contact :                Hartmut Schirmer
  21.  *                           Feldstrasse 118
  22.  *                    D-2300 Kiel 1
  23.  *                           Germany
  24.  *
  25.  *                    No telephone calls please !
  26.  *
  27.  *           NOTE : Please use ZIP 24105 after July 1 1993 !!
  28.  *
  29.  */
  30.  
  31. #ifndef __BGIEXT_H
  32. #define __BGIEXT_H
  33.  
  34. #ifdef __TURBOC__
  35. #  include <graphics.h>
  36. #endif
  37. #ifdef __GNUC__
  38. #  include <libbcc.h>
  39. #endif
  40.  
  41. extern unsigned char _dac_g256[][3];    /* 256 shading dac values */
  42. extern unsigned char _dac_normal[][3];  /* 256 standard colors    */
  43.  
  44. void setrgbdefaults(void);
  45. void setrgbgray256(void);
  46.  
  47. #endif
  48.