mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-10 06:02:01 +00:00
26 lines
No EOL
431 B
C
26 lines
No EOL
431 B
C
#pragma once
|
|
#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;
|
|
|
|
|
|
int utils_mmcMenu();
|
|
void utils_copystring(const char *in, char **out);
|
|
char *utils_InputText(char *start, int maxLen);
|
|
void utils_takeScreenshot(); |