Fixed NetDll_XNetDnsLookup signature.

This commit is contained in:
gibbed 2017-01-09 23:04:21 -06:00
parent 0c27891217
commit 89de63b34c
1 changed files with 2 additions and 1 deletions

View File

@ -503,7 +503,8 @@ dword_result_t NetDll_XNetGetEthernetLinkStatus(dword_t caller) { return 0; }
DECLARE_XAM_EXPORT(NetDll_XNetGetEthernetLinkStatus,
ExportTag::kStub | ExportTag::kNetworking);
dword_result_t NetDll_XNetDnsLookup(lpstring_t address, dword_t evt_handle,
dword_result_t NetDll_XNetDnsLookup(dword_t caller, lpstring_t address,
dword_t evt_handle,
pointer_t<XNDNS> host_out) {
return 0;
}