Subversion Repositories Kolibri OS

Rev

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

Rev 9810 Rev 9811
Line 21... Line 21...
21
    struct dirent* objs;
21
    struct dirent* objs;
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
DLLAPI int closedir(DIR* dir);
26
extern int _FUNC(closedir)(DIR* dir);
27
DLLAPI DIR* opendir(const char* path);
27
extern DIR* _FUNC(opendir)(const char* path);
28
DLLAPI struct dirent* readdir(DIR*);
28
extern struct dirent* _FUNC(readdir)(DIR*);
29
DLLAPI void rewinddir(DIR* dir);
29
extern void _FUNC(rewinddir)(DIR* dir);
30
DLLAPI void seekdir(DIR* dir, unsigned pos);
30
extern void _FUNC(seekdir)(DIR* dir, unsigned pos);
Line 31... Line 31...
31
DLLAPI unsigned telldir(DIR* dir);
31
extern unsigned _FUNC(telldir)(DIR* dir);