mirror of
https://github.com/joel16/3DSident.git
synced 2025-02-17 01:39:31 +00:00
![Joel](/assets/img/avatar_default.png)
Decided to remove config info, and keep 3DSident (original) minimal and only display cruical information. GSPLCD header is no longer required now that it's been merged into ctrulib Screenshots are now in the same format as 3DShell. All file handling functions use FS:USER
14 lines
193 B
C
14 lines
193 B
C
#ifndef SCREENSHOT_H
|
|
#define SCREENSHOT_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <png.h>
|
|
#include <zlib.h>
|
|
#include <3ds.h>
|
|
|
|
void captureScreenshot(void);
|
|
|
|
#endif
|