binana/profile/3.3.5a-windows-386/include/gx/monitor_mode.h

16 lines
273 B
C
Raw Normal View History

2024-12-20 15:12:31 -05:00
#ifndef GX_MONITOR_MODE_H
#define GX_MONITOR_MODE_H
DECLARE_STRUCT(CGxMonitorMode);
#include "tempest/vector.h"
#include "storm/array.h"
struct CGxMonitorMode {
C2iVector size;
uint32_t bpp;
uint32_t refreshRate;
};
STORM_TS_GROWABLE_ARRAY(CGxMonitorMode);
#endif