We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aa2b84 commit 00587b4Copy full SHA for 00587b4
src/scenes/mtp/main.h
@@ -19,6 +19,12 @@ typedef struct {
19
bool session_open;
20
} MTPSession;
21
22
+typedef struct FileHandle {
23
+ uint32_t handle;
24
+ char* path;
25
+ struct FileHandle* next;
26
+} FileHandle;
27
+
28
typedef struct AppMTP {
29
Submenu* menu;
30
View* view;
@@ -36,6 +42,8 @@ typedef struct AppMTP {
36
42
MTPSession session;
37
43
38
44
bool write_pending;
45
46
+ FileHandle* handles;
39
47
} AppMTP;
40
48
41
49
AppMTP* MTP_alloc();
0 commit comments