Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Lowden
OpenLDAP
Commits
2cc35658
Commit
2cc35658
authored
18 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
dirent emulation for MSVC
parent
8cf99829
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/ac/dirent.h
+14
-0
14 additions, 0 deletions
include/ac/dirent.h
libraries/liblutil/utils.c
+61
-0
61 additions, 0 deletions
libraries/liblutil/utils.c
with
75 additions
and
0 deletions
include/ac/dirent.h
+
14
−
0
View file @
2cc35658
...
...
@@ -20,6 +20,20 @@
#if HAVE_DIRENT_H
# include <dirent.h>
# define NAMLEN(dirent) strlen((dirent)->d_name)
#elif defined(_MSC_VER)
#include
<windows.h>
#ifndef MAX_PATH
#define MAX_PATH 260
#endif
struct
dirent
{
char
*
d_name
;
};
typedef
struct
DIR
{
HANDLE
dir
;
struct
dirent
data
;
int
first
;
char
buf
[
MAX_PATH
+
1
];
}
DIR
;
#else
# define dirent direct
# define NAMLEN(dirent) (dirent)->d_namlen
...
...
This diff is collapsed.
Click to expand it.
libraries/liblutil/utils.c
+
61
−
0
View file @
2cc35658
...
...
@@ -314,6 +314,67 @@ int mkstemp( char * template )
}
#endif
#ifdef _MSC_VER
#include
<windows.h>
struct
dirent
{
char
*
d_name
;
};
typedef
struct
DIR
{
HANDLE
dir
;
struct
dirent
data
;
int
first
;
char
buf
[
MAX_PATH
+
1
];
}
DIR
;
DIR
*
opendir
(
char
*
path
)
{
char
tmp
[
32768
];
int
len
=
strlen
(
path
);
DIR
*
d
;
HANDLE
h
;
WIN32_FIND_DATA
data
;
if
(
len
+
3
>=
sizeof
(
tmp
))
return
NULL
;
strcpy
(
tmp
,
path
);
tmp
[
len
++
]
=
'\\'
;
tmp
[
len
++
]
=
'*'
;
tmp
[
len
]
=
'\0'
;
h
=
FindFirstFile
(
tmp
,
&
data
);
if
(
h
==
INVALID_HANDLE_VALUE
)
return
NULL
;
d
=
ber_memalloc
(
sizeof
(
DIR
)
);
if
(
!
d
)
return
NULL
;
d
->
dir
=
h
;
d
->
data
.
d_name
=
d
->
buf
;
d
->
first
=
1
;
strcpy
(
d
->
data
.
d_name
,
data
.
cFileName
);
return
d
;
}
struct
dirent
*
readdir
(
DIR
*
dir
)
{
WIN32_FIND_DATA
data
;
if
(
dir
->
first
)
{
dir
->
first
=
0
;
}
else
{
if
(
!
FindNextFile
(
dir
->
dir
,
&
data
))
return
NULL
;
strcpy
(
dir
->
data
.
d_name
,
data
.
cFileName
);
}
return
&
dir
->
data
;
}
void
closedir
(
DIR
*
dir
)
{
FindClose
(
dir
->
dir
);
ber_memfree
(
dir
);
}
#endif
/*
* Memory Reverse Search
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment