server: Make the message callback function a client_ptr_t instead of a void pointer.
diff --git a/server/protocol.def b/server/protocol.def
index ca32a41..ea7da5e 100644
--- a/server/protocol.def
+++ b/server/protocol.def
@@ -200,7 +200,7 @@
 
 struct callback_msg_data
 {
-    void           *callback;   /* callback function */
+    client_ptr_t    callback;   /* callback function */
     lparam_t        data;       /* user data for callback */
     lparam_t        result;     /* message result */
 };