#ifndef _DETECT_HACKING_H
#define _DETECT_HACKING_H

#include <string>

#ifdef __WIN32__
#define WINDOWS_OS
#else
#define UNIX_OS
#endif

namespace security_tools {

using namespace std;

struct hacking_exception { };

extern void detect_hacking() throw(hacking_exception);

}

#endif /* _DETECT_HACKING_H */
