![]() |
|||||
|
#include <unixem/unixem.h>
#include <windows.h>
#include <errno.h>
#include <stdlib.h>
#include "dirent.h"
Compounds | |
struct | dirent_dir |
struct | wdirent_dir |
Defines | |
#define | FILE_ATTRIBUTE_ERROR (0xFFFFFFFF) |
Functions | |
DIR * | opendir (char const *name) |
Returns a pointer to the next directory entry. | |
int | closedir (DIR *dir) |
Closes a directory handle. | |
void | rewinddir (DIR *dir) |
Resets a directory search position. | |
dirent * | readdir (DIR *dir) |
Returns a pointer to the next directory entry. |
|
|
|
Closes a directory handle. This function closes a directory handle that was opened with opendir() and releases any resources associated with that directory handle.
|
|
Returns a pointer to the next directory entry. This function opens the directory named by filename, and returns a directory to be used to in subsequent operations. NULL is returned if name cannot be accessed, or if resources cannot be acquired to process the request.
|
|
Returns a pointer to the next directory entry. This function returns a pointer to the next directory entry, or NULL upon reaching the end of the directory or detecting an invalid seekdir() operation
|
|
Resets a directory search position. This function resets the position of the named directory handle to the beginning of the directory.
|
|
UNIX Emulation for Win32 Libraries documentation © Synesis Software Pty Ltd, 2002-2005 |