Rename projects to Aerofoil

This commit is contained in:
elasota
2020-01-03 00:30:09 -05:00
parent 3642f0c045
commit ec7e511cdd
61 changed files with 14 additions and 153 deletions

17
Aerofoil/GpGlobalConfig.h Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#include "EGpDisplayDriverType.h"
#include "EGpAudioDriverType.h"
#include "EGpInputDriverType.h"
struct GpGlobalConfig
{
EGpDisplayDriverType m_displayDriverType;
EGpAudioDriverType m_audioDriverType;
const EGpInputDriverType *m_inputDriverTypes;
size_t m_numInputDrivers;
void *m_osGlobals;
};
extern GpGlobalConfig g_gpGlobalConfig;