ddnet/src/engine/shared/engine.h

24 lines
339 B
C
Raw Normal View History

2010-05-29 07:25:38 +00:00
#ifndef ENGINE_SHARED_E_ENGINE_H
#define ENGINE_SHARED_E_ENGINE_H
#include "jobs.h"
class CHostLookup
{
public:
CJob m_Job;
char m_aHostname[128];
NETADDR m_Addr;
};
class CEngine
{
class CJobPool m_HostLookupPool;
public:
void Init(const char *pAppname);
void HostLookup(CHostLookup *pLookup, const char *pHostname);
};
#endif