Server reorganization:
- moved request handlers to the specific C files
- moved handle management to handle.c
- moved server private includes to server/ instead of include/server/
diff --git a/server/change.c b/server/change.c
index bae2f23..679df12 100644
--- a/server/change.c
+++ b/server/change.c
@@ -10,7 +10,9 @@
#include "winerror.h"
#include "winnt.h"
-#include "server/thread.h"
+
+#include "handle.h"
+#include "thread.h"
struct change
{
@@ -38,7 +40,7 @@
};
-struct object *create_change_notification( int subtree, int filter )
+static struct object *create_change_notification( int subtree, int filter )
{
struct change *change;
if (!(change = mem_alloc( sizeof(*change) ))) return NULL;
@@ -69,3 +71,18 @@
assert( obj->ops == &change_ops );
free( change );
}
+
+/* create a change notification */
+DECL_HANDLER(create_change_notification)
+{
+ struct object *obj;
+ struct create_change_notification_reply reply = { -1 };
+
+ if ((obj = create_change_notification( req->subtree, req->filter )))
+ {
+ reply.handle = alloc_handle( current->process, obj,
+ STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE, 0 );
+ release_object( obj );
+ }
+ send_reply( current, -1, 1, &reply, sizeof(reply) );
+}