Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/BLI_fileops_types.h')
-rw-r--r--source/blender/blenlib/BLI_fileops_types.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/blenlib/BLI_fileops_types.h b/source/blender/blenlib/BLI_fileops_types.h
index c17592f45fe..6456b457cfb 100644
--- a/source/blender/blenlib/BLI_fileops_types.h
+++ b/source/blender/blenlib/BLI_fileops_types.h
@@ -31,30 +31,30 @@
typedef unsigned int mode_t;
#endif
-#define FILELIST_DIRENTRY_SIZE_LEN 16
-#define FILELIST_DIRENTRY_MODE_LEN 4
+#define FILELIST_DIRENTRY_SIZE_LEN 16
+#define FILELIST_DIRENTRY_MODE_LEN 4
#define FILELIST_DIRENTRY_OWNER_LEN 16
-#define FILELIST_DIRENTRY_TIME_LEN 8
-#define FILELIST_DIRENTRY_DATE_LEN 16
+#define FILELIST_DIRENTRY_TIME_LEN 8
+#define FILELIST_DIRENTRY_DATE_LEN 16
struct direntry {
- mode_t type;
- const char *relname;
- const char *path;
+ mode_t type;
+ const char *relname;
+ const char *path;
#ifdef WIN32 /* keep in sync with the definition of BLI_stat_t in BLI_fileops.h */
# if defined(_MSC_VER)
- struct _stat64 s;
+ struct _stat64 s;
# else
- struct _stat s;
+ struct _stat s;
# endif
#else
- struct stat s;
+ struct stat s;
#endif
};
struct dirlink {
- struct dirlink *next, *prev;
- char *name;
+ struct dirlink *next, *prev;
+ char *name;
};
#endif /* __BLI_FILEOPS_TYPES_H__ */