[2/2] server: Implement wineserver call for SystemHandleInformation.

Alexandre Julliard julliard at winehq.org
Thu Dec 24 04:50:56 CST 2015


Sebastian Lackner <sebastian at 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 */
> + at REQ(get_system_handles)
> + at 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 at winehq.org



More information about the wine-devel mailing list