mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-23 03:29:45 +00:00
cf84991672
- Cleaned up a bunch of functions - Now builds with the latest toolchain. - GUI uses Citro2D.
15 lines
295 B
C
15 lines
295 B
C
#ifndef AC_H
|
|
#define AC_H
|
|
|
|
#include <3ds.h>
|
|
|
|
Result aciInit(void);
|
|
Result aciExit(void);
|
|
Result ACI_LoadWiFiSlot(u8 slot);
|
|
Result ACI_GetSSID(char * ssid);
|
|
Result ACI_GetPassphrase(char * passphrase);
|
|
Result ACI_GetSSIDLength(u8 * length);
|
|
Result ACI_GetSecurityMode(u8 * securityMode);
|
|
|
|
#endif
|