1 /* $Id: dirent.c,v 1.9 2006-08-14 10:40:34 adam Exp $
2 Copyright (C) 1995-2006
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
39 WIN32_FIND_DATA find_data;
43 DIR *opendir (const char *name)
45 char fullName[MAX_PATH+1];
46 DIR *dd = malloc (sizeof(*dd));
50 strcpy (fullName, name);
51 strcat (fullName, "\\*.*");
52 dd->handle = FindFirstFile(fullName, &dd->find_data);
56 struct dirent *readdir (DIR *dd)
58 if (dd->handle == INVALID_HANDLE_VALUE)
60 strcpy (dd->entry.d_name, dd->find_data.cFileName);
61 if (!FindNextFile(dd->handle, &dd->find_data))
63 FindClose (dd->handle);
64 dd->handle = INVALID_HANDLE_VALUE;
69 void closedir(DIR *dd)
71 if (dd->handle != INVALID_HANDLE_VALUE)
72 FindClose (dd->handle);
82 * indent-tabs-mode: nil
84 * vim: shiftwidth=4 tabstop=8 expandtab