Re: [2/2] server: Implement wineserver call for SystemHandleInformation.
24 Dec
2015
24 Dec
'15
10:50 a.m.
Sebastian Lackner <sebastian(a)fds-team.de> writes:
@@ -3265,6 +3265,22 @@ enum coords_relative VARARG(sd,security_descriptor); /* retrieved security descriptor */ @END
+ +struct handle_info +{ + process_id_t owner; + obj_handle_t handle; + unsigned int access; +}; + +/* Return a list of all opened handles */ +(a)REQ(get_system_handles) +(a)REPLY + unsigned int count; /* number of handles */ + VARARG(data,bytes); /* array of handle_infos */
This is not a bytes array, please write a proper dumping function. -- Alexandre Julliard julliard(a)winehq.org
3642
Age (days ago)
3642
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard