diff options
Diffstat (limited to 'w32/include')
-rw-r--r-- | w32/include/dirent.h | 2 | ||||
-rw-r--r-- | w32/include/pathstuff.h | 4 | ||||
-rw-r--r-- | w32/include/sub_proc.h | 2 | ||||
-rw-r--r-- | w32/include/w32err.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/w32/include/dirent.h b/w32/include/dirent.h index ccc1800..3437bd0 100644 --- a/w32/include/dirent.h +++ b/w32/include/dirent.h @@ -15,7 +15,7 @@ struct dirent
{
- ino_t d_ino; /* unused - no equivalent on WIN32 */
+ ino_t d_ino; /* unused - no equivalent on WINDOWS32 */
char d_name[NAME_MAX+1];
};
diff --git a/w32/include/pathstuff.h b/w32/include/pathstuff.h index 5916961..a036f7b 100644 --- a/w32/include/pathstuff.h +++ b/w32/include/pathstuff.h @@ -1,8 +1,8 @@ #ifndef _PATHSTUFF_H #define _PATHSTUFF_H -extern char * convert_Path_to_win32(char *Path, char to_delim); -extern char * convert_vpath_to_win32(char *Path, char to_delim); +extern char * convert_Path_to_windows32(char *Path, char to_delim); +extern char * convert_vpath_to_windows32(char *Path, char to_delim); extern char * w32ify(char *file, int resolve); extern char * getcwd_fs(char *buf, int len); diff --git a/w32/include/sub_proc.h b/w32/include/sub_proc.h index 4f1f312..700b945 100644 --- a/w32/include/sub_proc.h +++ b/w32/include/sub_proc.h @@ -20,7 +20,7 @@ /* $Id$ */
-#ifdef WIN32
+#ifdef WINDOWS32
#define EXTERN_DECL(entry, args) extern entry args
#define VOID_DECL void
diff --git a/w32/include/w32err.h b/w32/include/w32err.h index b48dbbe..68a6590 100644 --- a/w32/include/w32err.h +++ b/w32/include/w32err.h @@ -5,6 +5,6 @@ #define EXTERN_DECL(entry, args) entry args
#endif
-EXTERN_DECL(char * map_win32_error_to_string, (DWORD error));
+EXTERN_DECL(char * map_windows32_error_to_string, (DWORD error));
#endif /* !_W32ERR_H */
|