blob: 623fa2889c38f484d3fa6f001f70e90f4ac20891 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// +build windows
package sys_windows
foreign import "system:Dnsapi.lib"
@(default_calling_convention="std")
foreign Dnsapi {
DnsQuery_UTF8 :: proc(name: cstring, type: u16, options: DWORD, extra: PVOID, results: ^^DNS_RECORD, reserved: PVOID) -> DNS_STATUS ---
DnsRecordListFree :: proc(list: ^DNS_RECORD, options: DWORD) ---
}
|