From 9b414e11e0e0981a7da25ef03ad31a6761deb758 Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Sat, 24 Jun 2000 13:33:52 +0000 Subject: [PATCH] Added some stuff saying that this is NOT supported. --- files/change.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/files/change.c b/files/change.c index a9c01297b8e..5bce5f926c6 100644 --- a/files/change.c +++ b/files/change.c @@ -1,6 +1,11 @@ /* * Win32 file change notification functions * + * FIXME: this is VERY difficult to implement with proper Unix support + * at the wineserver side. + * (Unix doesn't really support this) + * See http://x57.deja.com/getdoc.xp?AN=575483053 for possible solutions. + * * Copyright 1998 Ulrich Weigand */ @@ -17,6 +22,7 @@ #include "server.h" #include "debugtools.h" +DEFAULT_DEBUG_CHANNEL(file); /**************************************************************************** * FindFirstChangeNotificationA (KERNEL32.248) @@ -26,6 +32,7 @@ HANDLE WINAPI FindFirstChangeNotificationA( LPCSTR lpPathName, BOOL bWatchSubtre { struct create_change_notification_request *req = get_req_buffer(); + FIXME("this is not supported yet (non-trivial).\n"); req->subtree = bWatchSubtree; req->filter = dwNotifyFilter; server_call( REQ_CREATE_CHANGE_NOTIFICATION );