Diff
Not logged in

Differences From Artifact [779dc56b5b]:

To Artifact [51f6c61f87]:


1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
}

/*
** Portable unicode implementation of opendir()
*/
#if INTERFACE

#if defined(_WIN32)
# include <dirent.h>
# define FOSSIL_DIR _WDIR
# define fossil_dirent _wdirent
# define fossil_opendir _wopendir
# define fossil_readdir _wreaddir
# define fossil_closedir _wclosedir
#else
# include <dirent.h>
# define FOSSIL_DIR DIR
# define fossil_dirent dirent
# define fossil_opendir opendir
# define fossil_readdir readdir
# define fossil_closedir closedir
#endif

#endif /* INTERFACE */



/**************************************************************************
** The following routines translate between MBCS and UTF8 on windows.







<
|
<
<
<
<
<
<
<
|
|
|
|
|
<







1006
1007
1008
1009
1010
1011
1012

1013







1014
1015
1016
1017
1018

1019
1020
1021
1022
1023
1024
1025
}

/*
** Portable unicode implementation of opendir()
*/
#if INTERFACE


#include <dirent.h>







#define FOSSIL_DIR DIR
#define fossil_dirent dirent
#define fossil_opendir opendir
#define fossil_readdir readdir
#define fossil_closedir closedir


#endif /* INTERFACE */



/**************************************************************************
** The following routines translate between MBCS and UTF8 on windows.