Renamed handle_t to obj_handle_t to avoid conflict with rpcdce.h.

diff --git a/server/pipe.c b/server/pipe.c
index d0f6bf8..d135a22 100644
--- a/server/pipe.c
+++ b/server/pipe.c
@@ -170,7 +170,7 @@
 DECL_HANDLER(create_pipe)
 {
     struct object *obj[2];
-    handle_t hread = 0, hwrite = 0;
+    obj_handle_t hread = 0, hwrite = 0;
 
     if (create_pipe( obj ))
     {