00001 /****************************************************************************************/ 00002 /* VidMode.h */ 00003 /* */ 00004 /* Author: Mike Sandige */ 00005 /* Description: */ 00006 /* */ 00007 /* Copyright (c) 1997, 1999, Eclipse Entertainment; All rights reserved. */ 00008 /* */ 00009 /* See the accompanying file LICENSE.TXT for terms on the use of this library. */ 00010 /* This library is distributed in the hope that it will be useful but WITHOUT */ 00011 /* ANY WARRANTY OF ANY KIND and without any implied warranty of MERCHANTABILITY */ 00012 /* or FITNESS FOR ANY PURPOSE. Refer to LICENSE.TXT for more details. */ 00013 /* */ 00014 /****************************************************************************************/ 00015 #ifndef VIDMODE_H 00016 #define VIDMODE_H 00017 00018 #include "basetype.h" 00019 00020 #ifdef __cplusplus 00021 extern "C" { 00022 #endif 00023 00024 00025 typedef int32 VidMode; // changed this from an enum with minimal impact on existing data structures 00026 00027 void VidMode_GetResolution (const VidMode V, int *Width, int *Height); 00028 geBoolean VidMode_SetResolution (VidMode *V, int Width, int Height); 00029 00030 00031 #ifdef __cplusplus 00032 } 00033 #endif 00034 00035 #endif
1.3.2