mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 02:43:09 +00:00
[DNSAPI][PSDK] Implement GetCurrentTimeInSeconds() and fix DnsQuery_A/UTF8/W()
This commit is contained in:
parent
01bd090db0
commit
158fda5cdf
4 changed files with 34 additions and 27 deletions
|
@ -741,7 +741,7 @@ DnsQuery_A(
|
|||
_In_ PCSTR pszName,
|
||||
_In_ WORD wType,
|
||||
_In_ DWORD Options,
|
||||
_Inout_opt_ PIP4_ARRAY pExtra,
|
||||
_Inout_opt_ PVOID pExtra,
|
||||
_Outptr_result_maybenull_ PDNS_RECORD *ppQueryResults,
|
||||
_Outptr_opt_result_maybenull_ PVOID *pReserved);
|
||||
|
||||
|
@ -751,7 +751,7 @@ DnsQuery_W(
|
|||
_In_ PCWSTR pszName,
|
||||
_In_ WORD wType,
|
||||
_In_ DWORD Options,
|
||||
_Inout_opt_ PIP4_ARRAY pExtra,
|
||||
_Inout_opt_ PVOID pExtra,
|
||||
_Outptr_result_maybenull_ PDNS_RECORD *ppQueryResults,
|
||||
_Outptr_opt_result_maybenull_ PVOID *pReserved);
|
||||
|
||||
|
@ -761,7 +761,7 @@ DnsQuery_UTF8(
|
|||
_In_ PCSTR pszName,
|
||||
_In_ WORD wType,
|
||||
_In_ DWORD Options,
|
||||
_Inout_opt_ PIP4_ARRAY pExtra,
|
||||
_Inout_opt_ PVOID pExtra,
|
||||
_Outptr_result_maybenull_ PDNS_RECORD *ppQueryResults,
|
||||
_Outptr_opt_result_maybenull_ PVOID *pReserved);
|
||||
|
||||
|
|
|
@ -27,6 +27,10 @@ WINAPI
|
|||
DnsGetCacheDataTable(
|
||||
_Out_ PDNS_CACHE_ENTRY *DnsCache);
|
||||
|
||||
DNS_STATUS
|
||||
WINAPI
|
||||
GetCurrentTimeInSeconds(VOID);
|
||||
|
||||
#endif /* __WIDL__ */
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue