From 49499c1707bb3b49bb7e9a0577f8a6802e7e60aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 25 Feb 2008 14:08:59 +0000 Subject: [PATCH] Forgot to commit these; this fixes building the fs_shell, thanks Jerome! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24115 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/fs_shell/fssh_api_wrapper.h | 16 +++++----- headers/private/fs_shell/fssh_node_monitor.h | 32 +++++++++++--------- 2 files changed, 26 insertions(+), 22 deletions(-) diff --git a/headers/private/fs_shell/fssh_api_wrapper.h b/headers/private/fs_shell/fssh_api_wrapper.h index 9d92f2689a..8dcdee60b1 100644 --- a/headers/private/fs_shell/fssh_api_wrapper.h +++ b/headers/private/fs_shell/fssh_api_wrapper.h @@ -976,13 +976,14 @@ //////////////////////////////////////////////////////////////////////////////// // #pragma mark - fssh_node_monitor.h -#define B_STOP_WATCHING FSSH_B_STOP_WATCHING -#define B_WATCH_NAME FSSH_B_WATCH_NAME -#define B_WATCH_STAT FSSH_B_WATCH_STAT -#define B_WATCH_ATTR FSSH_B_WATCH_ATTR -#define B_WATCH_DIRECTORY FSSH_B_WATCH_DIRECTORY -#define B_WATCH_ALL FSSH_B_WATCH_ALL -#define B_WATCH_MOUNT FSSH_B_WATCH_MOUNT +#define B_STOP_WATCHING FSSH_B_STOP_WATCHING +#define B_WATCH_NAME FSSH_B_WATCH_NAME +#define B_WATCH_STAT FSSH_B_WATCH_STAT +#define B_WATCH_ATTR FSSH_B_WATCH_ATTR +#define B_WATCH_DIRECTORY FSSH_B_WATCH_DIRECTORY +#define B_WATCH_ALL FSSH_B_WATCH_ALL +#define B_WATCH_MOUNT FSSH_B_WATCH_MOUNT +#define B_WATCH_INTERIM_STAT FSSH_B_WATCH_INTERIM_STAT #define B_ENTRY_CREATED FSSH_B_ENTRY_CREATED #define B_ENTRY_REMOVED FSSH_B_ENTRY_REMOVED @@ -1003,6 +1004,7 @@ #define B_STAT_MODIFICATION_TIME FSSH_B_STAT_MODIFICATION_TIME #define B_STAT_CREATION_TIME FSSH_B_STAT_CREATION_TIME #define B_STAT_CHANGE_TIME FSSH_B_STAT_CHANGE_TIME +#define B_STAT_INTERIM_UPDATE FSSH_B_STAT_INTERIM_UPDATE //////////////////////////////////////////////////////////////////////////////// diff --git a/headers/private/fs_shell/fssh_node_monitor.h b/headers/private/fs_shell/fssh_node_monitor.h index 0754106896..50be937544 100644 --- a/headers/private/fs_shell/fssh_node_monitor.h +++ b/headers/private/fs_shell/fssh_node_monitor.h @@ -16,14 +16,15 @@ */ enum { - FSSH_B_STOP_WATCHING = 0x0000, - FSSH_B_WATCH_NAME = 0x0001, - FSSH_B_WATCH_STAT = 0x0002, - FSSH_B_WATCH_ATTR = 0x0004, - FSSH_B_WATCH_DIRECTORY = 0x0008, - FSSH_B_WATCH_ALL = 0x000f, + FSSH_B_STOP_WATCHING = 0x0000, + FSSH_B_WATCH_NAME = 0x0001, + FSSH_B_WATCH_STAT = 0x0002, + FSSH_B_WATCH_ATTR = 0x0004, + FSSH_B_WATCH_DIRECTORY = 0x0008, + FSSH_B_WATCH_ALL = 0x000f, - FSSH_B_WATCH_MOUNT = 0x0010 + FSSH_B_WATCH_MOUNT = 0x0010, + FSSH_B_WATCH_INTERIM_STAT = 0x0020 }; @@ -53,14 +54,15 @@ enum { // messages, specifying what parts of the stat data have actually been // changed. (Haiku only) enum { - FSSH_B_STAT_MODE = 0x01, - FSSH_B_STAT_UID = 0x02, - FSSH_B_STAT_GID = 0x04, - FSSH_B_STAT_SIZE = 0x08, - FSSH_B_STAT_ACCESS_TIME = 0x10, - FSSH_B_STAT_MODIFICATION_TIME = 0x20, - FSSH_B_STAT_CREATION_TIME = 0x40, - FSSH_B_STAT_CHANGE_TIME = 0x80, + FSSH_B_STAT_MODE = 0x0001, + FSSH_B_STAT_UID = 0x0002, + FSSH_B_STAT_GID = 0x0004, + FSSH_B_STAT_SIZE = 0x0008, + FSSH_B_STAT_ACCESS_TIME = 0x0010, + FSSH_B_STAT_MODIFICATION_TIME = 0x0020, + FSSH_B_STAT_CREATION_TIME = 0x0040, + FSSH_B_STAT_CHANGE_TIME = 0x0080, + FSSH_B_STAT_INTERIM_UPDATE = 0x1000 };