00001 /****************************************************************************************/ 00002 /* AutoSelect.h */ 00003 /* */ 00004 /* Author: Mike Sandige */ 00005 /* Description: Attempts to automatically choose a good video mode */ 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 AUTOSELECT_H 00016 #define AUTOSELECT_H 00017 00018 #include "genesis.h" 00019 #include "ModeList.h" 00020 00021 #ifdef __cplusplus 00022 extern "C" { 00023 #endif 00024 00025 void AutoSelect_SortDriverList(ModeList *DriverList, int ListLength); 00026 geBoolean AutoSelect_PickDriver(HWND hWnd, geEngine *Engine,ModeList *List, int ModeListLength, int *Selection); 00027 00028 #ifdef __cplusplus 00029 } 00030 #endif 00031 00032 #endif 00033
1.3.2