summaryrefslogtreecommitdiff
path: root/FL/platform_types.h
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-11 13:07:08 +0000
committerManolo Gouy <Manolo>2016-04-11 13:07:08 +0000
commit5b44fe3bff5a86b888a39b27ceaa8636559e21a9 (patch)
tree44cefad634f4b19b710f01e7de10e47790b33a9c /FL/platform_types.h
parentaafd8b6031e66e0b2f727197c1d1d040036ec0a8 (diff)
Remove compilation errors in Fl_File_Icon.cxx with MSVC compiler with new method Fl_System_Driver::file_type().
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11581 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/platform_types.h')
-rw-r--r--FL/platform_types.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/FL/platform_types.h b/FL/platform_types.h
index 25c53ddec..000a9c910 100644
--- a/FL/platform_types.h
+++ b/FL/platform_types.h
@@ -58,12 +58,8 @@ struct stat { /* the FLTK source code uses part of the stat() API */
off_t st_size;
};
#define S_IFMT 0170000 /* type of file */
-#define S_IFIFO 0010000 /* named pipe (fifo) */
-#define S_IFCHR 0020000 /* character special */
#define S_IFDIR 0040000 /* directory */
-#define S_IFBLK 0060000 /* block special */
#define S_IFREG 0100000 /* regular */
-#define S_IFLNK 0120000 /* symbolic link */
#else
typedef unsigned long Fl_Offscreen;