Re: [PATCH v3 0/2] MR2059: combase: Generate apartment OXID in rpcss
1 Feb
2023
1 Feb
'23
12:46 p.m.
Huw Davies (@huw) commented about programs/rpcss/rpcss_main.c:
}
+/* Generates a new OXID suitable for use by an apartment. + * Each call to this function returns a distinct OXID. + * This function should not be invoked directly - use rpcss_get_new_apartment_oxid + * instead. */ +HRESULT __cdecl irpcss_get_new_apartment_oxid(handle_t h, OXID *oxid) +{ + HRESULT status; + ULONG oxid_upper_bits; + + static LONG oxid_lower_bits; + + status = I_RpcBindingInqLocalClientPID(h, &oxid_upper_bits); + ERR("Got client PID: %ld", oxid_upper_bits); + if (status != S_OK) { Please put the opening brace on a new line.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2059#note_22594
1046
Age (days ago)
1046
Last active (days ago)
0 comments
1 participants
participants (1)
-
Huw Davies (@huw)