mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-08-28 05:45:30 -05:00
Add support for the config and storage API. Bump version to 0.6
This commit is contained in:
19
source/utils/ConfigUtils.h
Normal file
19
source/utils/ConfigUtils.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include <gx2/enum.h>
|
||||
|
||||
struct StoredBuffer {
|
||||
void* buffer;
|
||||
uint32_t buffer_size;
|
||||
uint32_t mode;
|
||||
GX2SurfaceFormat surface_format;
|
||||
GX2BufferingMode buffering_mode;
|
||||
};
|
||||
|
||||
class ConfigUtils {
|
||||
public:
|
||||
static void openConfigMenu();
|
||||
|
||||
private:
|
||||
static void displayMenu();
|
||||
};
|
||||
Reference in New Issue
Block a user