1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-20 14:03:26 +01:00
TegraExplorer/source/tegraexplorer/utils/utils.h

26 lines
431 B
C
Raw Normal View History

2020-03-17 23:41:09 +00:00
#pragma once
2020-05-03 01:00:04 +01:00
#include "../../utils/types.h"
typedef struct _bmp_t
{
u16 magic;
u32 size;
u32 rsvd;
u32 data_off;
u32 hdr_size;
u32 width;
u32 height;
u16 planes;
u16 pxl_bits;
u32 comp;
u32 img_size;
u32 res_h;
u32 res_v;
u64 rsvd2;
} __attribute__((packed)) bmp_t;
2020-03-17 23:41:09 +00:00
2020-03-18 22:58:32 +00:00
int utils_mmcMenu();
2020-05-02 15:40:40 +01:00
void utils_copystring(const char *in, char **out);
2020-05-03 01:00:04 +01:00
char *utils_InputText(char *start, int maxLen);
void utils_takeScreenshot();