mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-25 07:58:39 -05:00
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
33 lines
589 B
C
33 lines
589 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 enum ACPDeviceType
|
|
{
|
|
ACP_DEVICE_TYPE_AUTO = 1,
|
|
ACP_DEVICE_TYPE_ODD = 2,
|
|
ACP_DEVICE_TYPE_HFIODISC = 2, /* when ApplicationDevice is emulated */
|
|
ACP_DEVICE_TYPE_MLC = 3,
|
|
ACP_DEVICE_TYPE_HFIOMLC = 3, /* when ApplicationDevice is emulated */
|
|
ACP_DEVICE_TYPE_USB = 4,
|
|
} ACPDeviceType;
|
|
|
|
ACPResult
|
|
ACPCheckApplicationDeviceEmulation(BOOL *emulation);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|