| author | "Tomas Zeman <tomas.zeman@sun.com>" |
| Fri, 19 Oct 2007 14:06:22 +0200 | |
| changeset 0 | 068428edee47 |
| permissions | -rw-r--r-- |
| 0 | 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 |