avm: Add AVMGetDRCScanMode.

This commit is contained in:
James Benton 2019-01-10 09:43:58 +00:00
parent 5177d7a6ee
commit 9e0394aae3
2 changed files with 34 additions and 0 deletions

5
include/avm/avm.dox Normal file
View File

@ -0,0 +1,5 @@
/**
* \defgroup avm avm
*
* AVM
*/

29
include/avm/drc.h Normal file
View 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
/** @} */