EHS/include/ehs/io/socket/DNS_W32.h

15 lines
225 B
C
Raw Permalink Normal View History

#pragma once
#include "BaseDNS.h"
namespace ehs
{
2024-07-24 01:36:20 -07:00
class EHS_LIB_IO DNS final : public BaseDNS
{
public:
static Str_8 Resolve(AddrType type, const Str_8 &hostname);
static Str_8 Resolve(const Str_8 &hostname);
};
}