2015-10-04 19:13:55 +02:00
|
|
|
/**
|
|
|
|
* @file sdmc.h
|
|
|
|
* @brief SDMC driver.
|
|
|
|
*/
|
2014-11-18 05:33:09 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <3ds/types.h>
|
|
|
|
|
2015-10-04 21:18:36 +02:00
|
|
|
//! Initializes the SDMC driver.
|
2014-11-18 05:33:09 +01:00
|
|
|
Result sdmcInit(void);
|
2015-10-04 19:13:55 +02:00
|
|
|
|
2015-10-04 21:18:36 +02:00
|
|
|
//! Exits the SDMC driver.
|
2014-11-18 05:33:09 +01:00
|
|
|
Result sdmcExit(void);
|