mirror of
https://github.com/cathery/sys-con.git
synced 2024-11-05 08:26:32 +00:00
11 lines
172 B
C
11 lines
172 B
C
#pragma once
|
|
#include "switch/result.h"
|
|
|
|
struct GlobalConfig
|
|
{
|
|
uint16_t dualshock4_productID;
|
|
};
|
|
|
|
Result mainLoop();
|
|
|
|
void LoadGlobalConfig(const GlobalConfig *config); |