dnsapi.odin 339 B

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