1 #ifndef HOSTS_H_INCLUDED
2 #define HOSTS_H_INCLUDED
3 
4 #include "readconfig.h"
5 #include "iheader.h"
6 #include "statichosts.h"
7 #include "dynamichosts.h"
8 
9 int Hosts_Init(ConfigFileInfo *ConfigInfo);
10 
11 BOOL Hosts_TypeExisting(const char *Domain, HostsRecordType Type);
12 
13 HostsUtilsTryResult Hosts_Try(IHeader *Header, int BufferLength);
14 
15 int Hosts_Get(IHeader *Header, int BufferLength);
16 
17 #endif // HOSTS_H_INCLUDED
18