mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 07:29:25 +01:00
25 lines
294 B
C
25 lines
294 B
C
#pragma once
|
|
#include <wut.h>
|
|
#include <nn/acp/result.h>
|
|
|
|
/**
|
|
* \defgroup nn_acp_device
|
|
* \ingroup nn_acp
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef int32_t ACPDeviceType;
|
|
|
|
ACPResult
|
|
ACPCheckApplicationDeviceEmulation(BOOL* emulation);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|