diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-08 21:00:18 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-08 21:00:18 +0000 |
| commit | eadb00f1aa0a089a2a3e151cef61a23248bffa90 (patch) | |
| tree | 844b43c0c9dba44691b438930cb17a67c1b0a11b /src/scandir_win32.c | |
| parent | 7d1cd94b72a511c43237469540ad49342b6f7cc8 (diff) | |
Got rid of FL/filename.H dependency.
Renamed back to scandir_win32.c...
git-svn-id: file:///fltk/svn/fltk/trunk@150 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/scandir_win32.c')
| -rw-r--r-- | src/scandir_win32.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/scandir_win32.c b/src/scandir_win32.c index 676c20278..ed0784afd 100644 --- a/src/scandir_win32.c +++ b/src/scandir_win32.c @@ -1,5 +1,5 @@ // -// "$Id: scandir_win32.c,v 1.7 1998/11/05 21:40:45 mike Exp $" +// "$Id: scandir_win32.c,v 1.8 1998/12/08 21:00:18 mike Exp $" // // WIN32 scandir function for the Fast Light Tool Kit (FLTK). // @@ -26,10 +26,11 @@ // Emulation of posix scandir() call #include <config.h> -#include <FL/filename.H> #include <string.h> #include <windows.h> +struct dirent { char name[1]; }; + #ifdef __cplusplus extern "C" #endif @@ -108,5 +109,5 @@ int alphasort (struct dirent **a, struct dirent **b) { } // -// End of "$Id: scandir_win32.c,v 1.7 1998/11/05 21:40:45 mike Exp $". +// End of "$Id: scandir_win32.c,v 1.8 1998/12/08 21:00:18 mike Exp $". // |
