29 Jun
2024
29 Jun
'24
6:21 p.m.
Aida JonikienÄ— (@DodoGTA) commented about dlls/netapi32/netapi32.c:
{ RpcBindingFree(&rpc_handle); } + +/************************************************************ + * NetGetAadJoinInformation (NETAPI32.@) + */ +HRESULT WINAPI NetGetAadJoinInformation(LPCWSTR tenant_id, PDSREG_JOIN_INFO *join_info) +{ + FIXME("(%s, %p): stub\n", debugstr_w(tenant_id), join_info); + return ERROR_CALL_NOT_IMPLEMENTED; Nitpick: Shouldn't `E_NOTIMPL` be used for `HRESULT` return types? :frog:
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/5956#note_74753