// File: llgfx_smode.h // // G A M E.O.N.E - LOW LEVEL LIB V1.0 // Copyright (C) 2001 LEVEL ONE ENTERTAINMENT, // Licensed under the terms of LGPL. //:--------------------------------------------------------------------------- //:Description // // Struktur von einem gültigen Displaymodus. // //:----------------------------------------------------------------------------- #if !defined(LLGFX_SMODE_INCLUDED) #define LLGFX_SMODE_INCLUDED //:> +--------------------------------+ //:>---------------------| _mode Struct Declaration |--------------------- //:> +--------------------------------+ //:Class struct _mode { int width; // Pixelbreite displaymodus int height; // Pixelhöhe displaymodus int bpp; // Bits pro Pixel int refresh; // Refreshrate in Hz }; //:Custom typedef struct _mode llgfx_sDisplayMode; typedef struct _mode s_mode; //:End Custom #endif // LLGFX_SMODE_INCLUDED