mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 01:14:40 +00:00
11 lines
352 B
Odin
11 lines
352 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: DNS_QUERY_OPTIONS, extra: PVOID, results: ^^DNS_RECORD, reserved: PVOID) -> DNS_STATUS ---
|
|
DnsRecordListFree :: proc(list: ^DNS_RECORD, options: DWORD) ---
|
|
}
|