home *** CD-ROM | disk | FTP | other *** search
/ Learn 3D Graphics Programming on the PC / Learn_3D_Graphics_Programming_on_the_PC_Ferraro.iso / rwdos / os.h < prev    next >
Text File  |  1995-02-15  |  1KB  |  36 lines

  1. /**********************************************************************
  2.  *
  3.  * File :     os.h
  4.  *
  5.  * Abstract : Function prototypes for all OS specific functions
  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. void  OsShowCameraImage(void);
  26. void  OsBeginCameraUpdate(RwCamera *camera);
  27. void  OsError(char *string, ...);
  28. int   OsOpen(void);
  29. int   OsInit(void);
  30. void  OsTidy(void);
  31. void  OsDisplayScore(int dead, int left);
  32. RwInt32 OsMaxCameraWidth(void);
  33. RwInt32 OsMaxCameraHeight(void);
  34. RwInt32 OsMaxScreenWidth(void);
  35. RwInt32 OsMaxScreenHeight(void);
  36.