Re: [PATCH v3 0/2] MR2059: combase: Generate apartment OXID in rpcss
1 Feb
2023
1 Feb
'23
6:46 a.m.
Huw Davies (@huw) commented about programs/rpcss/rpcss_main.c:
return S_OK; }
+/* 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);
This looks like it's left-over from debugging. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2059#note_22593
1045
Age (days ago)
1045
Last active (days ago)
0 comments
1 participants
participants (1)
-
Huw Davies (@huw)