home *** CD-ROM | disk | FTP | other *** search
/ Learn 3D Graphics Programming on the PC / Learn_3D_Graphics_Programming_on_the_PC_Ferraro.iso / rwwin / xolor.h_ / xolor.bin
Text File  |  1995-11-14  |  2KB  |  54 lines

  1. #if !defined(_COLOR_H)
  2. #define _COLOR_H
  3.  
  4. /**********************************************************************
  5.  *
  6.  * File :     color.h
  7.  *
  8.  * Abstract : A simple color picker dialog. We could use the standard
  9.  *            Windows Color Chooser dialog but I think it is a little
  10.  *            fussy and elaborate for our purposes.
  11.  *
  12.  *            This application had been written to be compatible with
  13.  *            both the fixed and floating-point versions of the
  14.  *            RenderWare library, i.e., it uses the macros CREAL,
  15.  *            INT2REAL, RAdd, RDiv, RSub etc. If your application is
  16.  *            intended for the floating-point version of the library
  17.  *            only these macros are not necessary.
  18.  *
  19.  *            Please note that this application is intended for
  20.  *            demonstration purposes only. No support will be
  21.  *            provided for this code and it comes with no warranty.
  22.  *
  23.  **********************************************************************
  24.  *
  25.  * This file is a product of Criterion Software Ltd.
  26.  *
  27.  * This file is provided as is with no warranties of any kind and is
  28.  * provided without any obligation on Criterion Software Ltd. or
  29.  * Canon Inc. to assist in its use or modification.
  30.  *
  31.  * Criterion Software Ltd. will not, under any
  32.  * circumstances, be liable for any lost revenue or other damages arising
  33.  * from the use of this file.
  34.  *
  35.  * Copyright (c) 1994, 1995 Criterion Software Ltd.
  36.  * All Rights Reserved.
  37.  *
  38.  * RenderWare is a trademark of Canon Inc.
  39.  *
  40.  **********************************************************************/
  41.  
  42. /**********************************************************************
  43.  *
  44.  * Functions.
  45.  *
  46.  **********************************************************************/
  47.  
  48. extern BOOL CALLBACK
  49. ColorDlgProc(HWND dialog, UINT message, WPARAM wParam, LPARAM lParam);
  50.  
  51. /**********************************************************************/
  52.  
  53. #endif /* !defined(_COLOR_H) */
  54.