mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-04 20:04:29 +01:00
avm: Add AVMGetDRCScanMode.
This commit is contained in:
parent
5177d7a6ee
commit
9e0394aae3
5
include/avm/avm.dox
Normal file
5
include/avm/avm.dox
Normal file
@ -0,0 +1,5 @@
|
||||
/**
|
||||
* \defgroup avm avm
|
||||
*
|
||||
* AVM
|
||||
*/
|
29
include/avm/drc.h
Normal file
29
include/avm/drc.h
Normal file
@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
#include <wut.h>
|
||||
|
||||
/**
|
||||
* \defgroup avm_drc DRC
|
||||
* \ingroup avm
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef enum AVMDrcScanMode
|
||||
{
|
||||
AVM_DRC_SCAN_MODE_UNKNOWN_0 = 0,
|
||||
AVM_DRC_SCAN_MODE_UNKNOWN_1 = 1,
|
||||
AVM_DRC_SCAN_MODE_UNKNOWN_3 = 3,
|
||||
AVM_DRC_SCAN_MODE_UNKNOWN_255 = 255,
|
||||
} AVMDrcScanMode;
|
||||
|
||||
BOOL
|
||||
AVMGetDRCScanMode(AVMDrcScanMode *outScanMode);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
/** @} */
|
Loading…
Reference in New Issue
Block a user