mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
11 lines
342 B
Odin
11 lines
342 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import "system:Dnsapi.lib"
|
|
|
|
@(default_calling_convention="system")
|
|
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) ---
|
|
}
|