The complete source code of IdealIRC http://www.idealirc.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
idealirc/ScriptFunctions/ScriptIRCUtils.h

21 lines
497 B

/*
* IdealIRC - Internet Relay Chat client
* Copyright (C) 2021 Tom-Andre Barstad.
* This software is licensed under the Software Attribution License.
* See LICENSE for more information.
*/
#ifndef SCRIPTIRCUTILS_H
#define SCRIPTIRCUTILS_H
#include "Script/ValueHolder.h"
#include <vector>
class Script;
namespace ScriptFunctions {
ValueHolder userhost(Script&, std::vector<ValueHolder>& args);
ValueHolder isupport(Script&, std::vector<ValueHolder>& args);
}
#endif // SCRIPTIRCUTILS_H