mirror of
https://github.com/joel16/3DSident.git
synced 2025-04-02 05:31:32 +00:00

W.I.P changes include friend code, and device cert. Device cert doesn't print anything as of now. The NNID is displayed properly. This time it shows both your username and ID. Fixed a problem that caused crashes when de-initializing actu.
21 lines
591 B
C
21 lines
591 B
C
#include <3ds.h>
|
|
#include <malloc.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
Handle actHandle;
|
|
int actRefCount;
|
|
|
|
u32 *act_shareMemAddr;
|
|
u32 act_shareMemSize;
|
|
Handle act_shareMemHandle;
|
|
|
|
Result actInit(u32 sdkVer, u32 sharedMemSize);
|
|
void actExit(void);
|
|
Result ACT_Initialize(u32 sdkVer, void *addr, u32 memSize);
|
|
Result ACT_GetAccountInfo(void *buffer, u32 size, u32 blkId);
|
|
Result actuInit(void);
|
|
Result actuExit(void);
|
|
Result ACTU_Initialize(u32 sdkVersion, u32 unknown, Handle handle);
|
|
Result ACTU_GetAccountDataBlock(u32 unknown, u32 size, u32 blockId, void* output); |