SCIM Bridge 0.4.x
lt__dirent.h
1/* lt__dirent.h -- internal directory entry scanning interface
2
3 Copyright (C) 2001, 2004, 2006, 2011-2019, 2021-2022 Free Software
4 Foundation, Inc.
5 Written by Bob Friesenhahn, 2001
6
7 NOTE: The canonical source of this file is maintained with the
8 GNU Libtool package. Report bugs to bug-libtool@gnu.org.
9
10GNU Libltdl is free software; you can redistribute it and/or
11modify it under the terms of the GNU Lesser General Public
12License as published by the Free Software Foundation; either
13version 2 of the License, or (at your option) any later version.
14
15As a special exception to the GNU Lesser General Public License,
16if you distribute this file as part of a program or library that
17is built using GNU Libtool, you may include this file under the
18same distribution terms that you use for the rest of that program.
19
20GNU Libltdl is distributed in the hope that it will be useful,
21but WITHOUT ANY WARRANTY; without even the implied warranty of
22MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23GNU Lesser General Public License for more details.
24
25You should have received a copy of the GNU Lesser General Public
26License along with GNU Libltdl; see the file COPYING.LIB. If not, a
27copy can be downloaded from http://www.gnu.org/licenses/lgpl.html,
28or obtained by writing to the Free Software Foundation, Inc.,
2951 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30*/
31
32#if !defined LT__DIRENT_H
33#define LT__DIRENT_H 1
34
35#if defined LT_CONFIG_H
36# include LT_CONFIG_H
37#else
38# include <config.h>
39#endif
40
41#include "lt_system.h"
42
43#ifdef HAVE_DIRENT_H
44/* We have a fully operational dirent subsystem. */
45# include <dirent.h>
46# define D_NAMLEN(dirent) (strlen((dirent)->d_name))
47
48#elif defined __WINDOWS__
49/* Use some wrapper code to emulate dirent on windows.. */
50# define WINDOWS_DIRENT_EMULATION 1
51
52# include <windows.h>
53
54# define D_NAMLEN(dirent) (strlen((dirent)->d_name))
55# define dirent lt__dirent
56# define DIR lt__DIR
57# define opendir lt__opendir
58# define readdir lt__readdir
59# define closedir lt__closedir
60
61LT_BEGIN_C_DECLS
62
63struct dirent
64{
65 char d_name[LT_FILENAME_MAX];
66 int d_namlen;
67};
68
69typedef struct
70{
71 HANDLE hSearch;
72 WIN32_FIND_DATA Win32FindData;
73 BOOL firsttime;
74 struct dirent file_info;
75} DIR;
76
77
78LT_SCOPE DIR * opendir (const char *path);
79LT_SCOPE struct dirent *readdir (DIR *entry);
80LT_SCOPE void closedir (DIR *entry);
81
82LT_END_C_DECLS
83
84#else /* !defined __WINDOWS__*/
85ERROR - cannot find dirent
86#endif
87
88#endif