- Use NULL instead of 0 for all non-handle pointers.
- Fix non-ANSI function declarations.
- Make a function static.

diff --git a/server/process.c b/server/process.c
index 24a34c8..eb869ec 100644
--- a/server/process.c
+++ b/server/process.c
@@ -1181,7 +1181,7 @@
         if (dll)
         {
             reply->size = dll->size;
-            reply->entry_point = 0; /* FIXME */
+            reply->entry_point = NULL; /* FIXME */
             if (dll->filename)
             {
                 size_t len = min( dll->namelen, get_reply_max_size() );