This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/irc.hpp
2019-05-25 20:47:20 +02:00

13 lines
196 B
C++

#pragma once
#include "config.h"
#if ENABLE_IRC
#include <string>
namespace IRC
{
bool sendmsg(std::string &msg, bool loopback = false);
void auth(bool reply = false);
} // namespace IRC
#endif