mirror of
https://github.com/wiiu-env/AutobootModule.git
synced 2024-11-16 08:19:16 +01:00
29 lines
448 B
C
29 lines
448 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum ScreenType {
|
|
SCREEN_TYPE_TV = 1,
|
|
SCREEN_TYPE_DRC,
|
|
SCREEN_TYPE_BOTH,
|
|
} ScreenType;
|
|
|
|
int32_t
|
|
CMPTGetDataSize(uint32_t* outSize);
|
|
|
|
int32_t
|
|
CMPTLaunchTitle(void* dataBuffer, uint32_t bufferSize, uint32_t titleId_low, uint32_t titleId_high);
|
|
|
|
int32_t
|
|
CMPTAcctSetScreenType(ScreenType type);
|
|
|
|
int32_t
|
|
CMPTCheckScreenState(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|