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

  1. /**********************************************************************
  2.  *
  3.  * File :     gdi3d.h
  4.  *
  5.  * Abstract : RenderWare Shop demo. Function prototypes for gdi3d.c
  6.  *
  7.  **********************************************************************
  8.  *
  9.  * This file is a product of Criterion Software Ltd.
  10.  *
  11.  * This file is provided as is with no warranties of any kind and is
  12.  * provided without any obligation on Criterion Software Ltd. or
  13.  * Canon Inc. to assist in its use or modification.
  14.  *
  15.  * Criterion Software Ltd. will not, under any
  16.  * circumstances, be liable for any lost revenue or other damages arising
  17.  * from the use of this file.
  18.  *
  19.  * Copyright (c) 1995 Criterion Software Ltd.
  20.  * All Rights Reserved.
  21.  *
  22.  * RenderWare is a trademark of Canon Inc.
  23.  *
  24.  ************************************************************************/
  25. #ifndef GDI3D_H
  26. #define GDI3D_H
  27.  
  28. /**********************************************************************
  29.  *
  30.  * Include files.
  31.  *
  32.  **********************************************************************/
  33.  
  34. #include <windows.h>
  35.  
  36. /**********************************************************************
  37.  *
  38.  * Function prototypes.
  39.  *
  40.  **********************************************************************/
  41.  
  42. int Rectangle3D(HDC hdc, int left, int top, int right, int bottom, int out);
  43. int FrameRect3D(HDC hdc, int left, int top, int right, int bottom, int out);
  44.  
  45. /**********************************************************************
  46.  *
  47.  * End of file.
  48.  *
  49.  **********************************************************************/
  50.  
  51. #endif /* GDI3D_H */
  52.