diff options
author | Andrey Nazarov <skuller@skuller.net> | 2011-12-18 22:28:37 +0400 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2011-12-18 22:28:37 +0400 |
commit | d17e7ddd2cd757fa6c98826ec1873a51d0b593ee (patch) | |
tree | 87aed0e83dd4dac84f6a46251fd4f99bac6b7e23 /src/files.h | |
parent | a993642da53026ff05dd74a1ade7cb09f7f25c31 (diff) |
Fix line endings when writing text files on Win32.
Diffstat (limited to 'src/files.h')
-rw-r--r-- | src/files.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/files.h b/src/files.h index 38d4088..926d59a 100644 --- a/src/files.h +++ b/src/files.h @@ -62,9 +62,10 @@ typedef struct file_info_s { #define FS_SEARCH_STRIPEXT 0x00000800 #define FS_SEARCH_DIRSONLY 0x00001000 -// bits 8 - 9, flag +// bits 8 - 10, flag #define FS_FLAG_GZIP 0x00000100 #define FS_FLAG_EXCL 0x00000200 +#define FS_FLAG_TEXT 0x00000400 // // Limit the maximum file size FS_LoadFile can handle, as a protection from |