updated to new version of Ezc

git-svn-id: svn://ttmath.org/publicrep/winix/trunk@602 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2010-05-30 21:07:46 +00:00
parent 612f260938
commit 4a7f036561
14 changed files with 111 additions and 126 deletions

View File

@@ -18,28 +18,28 @@ namespace TemplatesNotifyFunctions
void notify_item_added(Info & i)
{
i.result = (notify_msg->notify_code & WINIX_NOTIFY_ITEM_ADD) != 0;
i.res = (notify_msg->notify_code & WINIX_NOTIFY_ITEM_ADD) != 0;
}
void notify_item_edited(Info & i)
{
i.result = (notify_msg->notify_code & WINIX_NOTIFY_ITEM_EDIT) != 0;
i.res = (notify_msg->notify_code & WINIX_NOTIFY_ITEM_EDIT) != 0;
}
void notify_item_deleted(Info & i)
{
i.result = (notify_msg->notify_code & WINIX_NOTIFY_ITEM_DELETE) != 0;
i.res = (notify_msg->notify_code & WINIX_NOTIFY_ITEM_DELETE) != 0;
}
void notify_dir_added(Info & i)
{
i.result = (notify_msg->notify_code & WINIX_NOTIFY_DIR_ADD) != 0;
i.res = (notify_msg->notify_code & WINIX_NOTIFY_DIR_ADD) != 0;
}
@@ -52,13 +52,13 @@ void notify_to(Info & i)
void notify_mount_type_is_thread(Info & i)
{
i.result = notify_msg->current_mount_type == Mount::thread;
i.res = notify_msg->current_mount_type == Mount::thread;
}
void notify_mount_type_is_cms(Info & i)
{
i.result = notify_msg->current_mount_type == Mount::cms;
i.res = notify_msg->current_mount_type == Mount::cms;
}