Main Page   Modules   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

dirent-win32.h

Go to the documentation of this file.
00001 /*
00002 
00003     Declaration of POSIX directory browsing functions and types for Win32.
00004 
00005     Kevlin Henney (mailto:kevlin@acm.org), March 1997.
00006 
00007     Copyright Kevlin Henney, 1997. All rights reserved.
00008 
00009     Permission to use, copy, modify, and distribute this software and its
00010     documentation for any purpose is hereby granted without fee, provided
00011     that this copyright and permissions notice appear in all copies and
00012     derivatives, and that no charge may be made for the software and its
00013     documentation except to cover cost of distribution.
00014     
00015 */
00016 
00017 #ifndef DIRENT_INCLUDED
00018 #define DIRENT_INCLUDED
00019 
00020 #ifdef __cplusplus
00021 extern "C" {
00022 #endif
00023 
00024 typedef struct DIR DIR;
00025 
00026 struct dirent
00027 {
00028     char *d_name;
00029 };
00030 
00031 DIR           *opendir(const char *);
00032 int           closedir(DIR *);
00033 struct dirent *readdir(DIR *);
00034 void          rewinddir(DIR *);
00035 
00036 #ifdef __cplusplus
00037 }
00038 #endif
00039 
00040 #endif

Generated on Mon May 16 18:26:57 2005 for libdms4 by doxygen1.3-rc2