Files
Aerofoil/GpShell/GpGlobalConfig.h

31 lines
631 B
C
Raw Normal View History

#pragma once
2019-12-29 17:39:19 -05:00
#include "EGpDisplayDriverType.h"
#include "EGpAudioDriverType.h"
#include "EGpFontHandlerType.h"
#include "EGpInputDriverType.h"
#include <stdint.h>
2021-03-18 17:08:11 -04:00
#include <stddef.h>
2020-09-28 09:58:19 -04:00
struct IGpLogDriver;
struct IGpSystemServices;
2021-04-28 01:46:07 -04:00
struct IGpAllocator;
struct GpGlobalConfig
{
2019-12-22 00:35:30 -05:00
EGpDisplayDriverType m_displayDriverType;
2019-12-29 17:39:19 -05:00
EGpAudioDriverType m_audioDriverType;
EGpFontHandlerType m_fontHandlerType;
2019-12-29 17:39:19 -05:00
const EGpInputDriverType *m_inputDriverTypes;
size_t m_numInputDrivers;
IGpLogDriver *m_logger;
IGpSystemServices *m_systemServices;
2021-04-28 01:46:07 -04:00
IGpAllocator *m_allocator;
void *m_osGlobals;
};
extern GpGlobalConfig g_gpGlobalConfig;