- Implemented a few information classes in NtQuerySystemInformation.
- Added handle information to (wineserver) process snapshot.

diff --git a/server/handle.c b/server/handle.c
index 7669688..ae68a7a 100644
--- a/server/handle.c
+++ b/server/handle.c
@@ -503,6 +503,12 @@
     return handle;
 }
 
+/* return the size of the handle table of a given process */
+unsigned int get_handle_table_count( struct process *process )
+{
+    return process->handles->count;
+}
+
 /* close a handle */
 DECL_HANDLER(close_handle)
 {