server: Make TEB and PEB client_ptr_t instead of void pointers.
diff --git a/server/process.h b/server/process.h
index 5d3b456..5311ae3 100644
--- a/server/process.h
+++ b/server/process.h
@@ -79,7 +79,7 @@
obj_handle_t desktop; /* handle to desktop to use for new threads */
struct token *token; /* security token associated with this process */
struct list dlls; /* list of loaded dlls */
- void *peb; /* PEB address in client address space */
+ client_ptr_t peb; /* PEB address in client address space */
client_ptr_t ldt_copy; /* pointer to LDT copy in client addr space */
unsigned int trace_data; /* opaque data used by the process tracing mechanism */
};