mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
31 lines
631 B
C
31 lines
631 B
C
#pragma once
|
|
|
|
#include "EGpDisplayDriverType.h"
|
|
#include "EGpAudioDriverType.h"
|
|
#include "EGpFontHandlerType.h"
|
|
#include "EGpInputDriverType.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
struct IGpLogDriver;
|
|
struct IGpSystemServices;
|
|
struct IGpAllocator;
|
|
|
|
struct GpGlobalConfig
|
|
{
|
|
EGpDisplayDriverType m_displayDriverType;
|
|
EGpAudioDriverType m_audioDriverType;
|
|
EGpFontHandlerType m_fontHandlerType;
|
|
|
|
const EGpInputDriverType *m_inputDriverTypes;
|
|
size_t m_numInputDrivers;
|
|
|
|
IGpLogDriver *m_logger;
|
|
IGpSystemServices *m_systemServices;
|
|
IGpAllocator *m_allocator;
|
|
void *m_osGlobals;
|
|
};
|
|
|
|
extern GpGlobalConfig g_gpGlobalConfig;
|