mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-26 13:52:06 +00:00
d6c4204027
Based on lockpick_rcm 1.9.0
23 lines
No EOL
419 B
C
23 lines
No EOL
419 B
C
#pragma once
|
|
#include <utils/types.h>
|
|
#include "../../utils/vector.h"
|
|
|
|
typedef struct {
|
|
char *name;
|
|
union {
|
|
struct {
|
|
u8 isDir:1;
|
|
};
|
|
u8 optionUnion;
|
|
};
|
|
union {
|
|
struct {
|
|
u16 size:12;
|
|
u16 showSize:1;
|
|
u16 sizeDef:3;
|
|
};
|
|
u16 sizeUnion;
|
|
};
|
|
} FSEntry_t;
|
|
|
|
Vector_t /* of type FSEntry_t */ ReadFolder(char *path); |