mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-05 15:42:17 +03:00
15 lines
348 B
C++
15 lines
348 B
C++
#ifndef GX_ADAPTER_HPP
|
|
#define GX_ADAPTER_HPP
|
|
|
|
#include "gx/CGxFormat.hpp"
|
|
#include "gx/CGxMonitorMode.hpp"
|
|
#include "gx/Types.hpp"
|
|
#include <storm/Array.hpp>
|
|
#include <cstdint>
|
|
|
|
int32_t GxAdapterFormats(EGxApi api, TSGrowableArray<CGxFormat>& adapterFormats);
|
|
|
|
int32_t GxAdapterMonitorModes(TSGrowableArray<CGxMonitorMode>& monitorModes);
|
|
|
|
#endif
|