| changeset 0 | 068428edee47 |
| -1:000000000000 | 0:068428edee47 |
|---|---|
1 #ifndef READSUBDIR_H |
|
2 #define READSUBDIR_H |
|
3 |
|
4 #include "direntry.h" |
|
5 |
|
6 typedef struct readsubdir |
|
7 { |
|
8 DIR *dir; |
|
9 int pos; |
|
10 char *name; |
|
11 void (*pause)(); |
|
12 } |
|
13 readsubdir; |
|
14 |
|
15 extern void readsubdir_init(); |
|
16 extern int readsubdir_next(); |
|
17 |
|
18 #define READSUBDIR_NAMELEN 10 |
|
19 |
|
20 #endif |