3
*************************************************************************
5
ArmageTron -- Just another Tron Lightcycle Game in 3D.
6
Copyright (C) 2000 Manuel Moos (manuel@moosnet.de)
7
Copyright (C) 2004 Armagetron Advanced Team (http://sourceforge.net/projects/armagetronad/)
9
**************************************************************************
11
This program is free software; you can redistribute it and/or
12
modify it under the terms of the GNU General Public License
13
as published by the Free Software Foundation; either version 2
14
of the License, or (at your option) any later version.
16
This program is distributed in the hope that it will be useful,
17
but WITHOUT ANY WARRANTY; without even the implied warranty of
18
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
GNU General Public License for more details.
21
You should have received a copy of the GNU General Public License
22
along with this program; if not, write to the Free Software
23
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
***************************************************************************
29
#ifndef DIRENT_INCLUDED
30
#define DIRENT_INCLUDED
34
Declaration of POSIX directory browsing functions and types for Win32.
36
Author: Kevlin Henney (kevlin@acm.org, kevlin@curbralan.com)
37
History: Created March 1997. Updated June 2003.
38
Rights: See end of file.
47
typedef struct DIR DIR;
54
DIR *opendir(const char *);
56
struct dirent *readdir(DIR *);
57
void rewinddir(DIR *);
61
Copyright Kevlin Henney, 1997, 2003. All rights reserved.
63
Permission to use, copy, modify, and distribute this software and its
64
documentation for any purpose is hereby granted without fee, provided
65
that this copyright and permissions notice appear in all copies and
68
This software is supplied "as is" without express or implied warranty.
70
But that said, if there are any problems please get in touch.