server: Add get_token_statistics server call and use it to implement the TokenStatistics and TokenType levels for NtQueryInformationToken.
diff --git a/server/request.h b/server/request.h
index 12a7b9c..fe94d2e 100644
--- a/server/request.h
+++ b/server/request.h
@@ -329,6 +329,7 @@
DECL_HANDLER(delete_device);
DECL_HANDLER(get_next_device_request);
DECL_HANDLER(make_process_system);
+DECL_HANDLER(get_token_statistics);
#ifdef WANT_REQUEST_HANDLERS
@@ -554,6 +555,7 @@
(req_handler)req_delete_device,
(req_handler)req_get_next_device_request,
(req_handler)req_make_process_system,
+ (req_handler)req_get_token_statistics,
};
#endif /* WANT_REQUEST_HANDLERS */