mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 07:19:21 +01:00
05e45cc180
* Add some nn_pdm.rpl headers * nn_pdm: small fixes
48 lines
508 B
C
48 lines
508 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup nn_pdm_c
|
|
* \ingroup nn_pdm
|
|
* C functions for PDM
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Initializes PDM.
|
|
* Needs to be called before using other functions.
|
|
*
|
|
* \return
|
|
* 0 on success.
|
|
*/
|
|
uint32_t
|
|
PDMInitialize();
|
|
|
|
/**
|
|
* Finalize PDM.
|
|
*/
|
|
void
|
|
PDMFinalize();
|
|
|
|
/**
|
|
* Close all opened PDM Files.
|
|
*/
|
|
void
|
|
PDMCloseAllFiles();
|
|
|
|
void
|
|
PDMNotifySetTimeBeginEvent();
|
|
|
|
void
|
|
PDMNotifySetTimeEndEvent();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|