Subversion Repositories Kolibri OS

Rev

Rev 8730 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8730 Rev 8744
Line 22... Line 22...
22
    ino_t pos;
22
    ino_t pos;
23
    ino_t num_objs;   
23
    ino_t num_objs;   
24
}DIR;
24
}DIR;
Line 25... Line 25...
25
 
25
 
26
 
26
 
27
int  _FUNC(closedir)(DIR *dir);
27
extern int  _FUNC(closedir)(DIR *dir);
28
DIR* _FUNC(opendir)(const char *path);
28
extern DIR* _FUNC(opendir)(const char *path);
29
struct dirent* _FUNC(readdir)(DIR *);
29
extern struct dirent* _FUNC(readdir)(DIR *);
30
void _FUNC(rewinddir)(DIR *dir);
30
extern void _FUNC(rewinddir)(DIR *dir);
Line 31... Line 31...
31
void _FUNC(seekdir)(DIR *dir, unsigned pos);
31
extern void _FUNC(seekdir)(DIR *dir, unsigned pos);