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.
21 lines
748 B
21 lines
748 B
#ifndef SCRIPTGENERALUTILS_H
|
|
#define SCRIPTGENERALUTILS_H
|
|
|
|
#include "Script/ValueHolder.h"
|
|
#include <vector>
|
|
|
|
class Script;
|
|
|
|
namespace ScriptFunctions {
|
|
ValueHolder input(Script&, std::vector<ValueHolder>& args);
|
|
ValueHolder showmessage(Script&, std::vector<ValueHolder>& args);
|
|
ValueHolder context(Script&, std::vector<ValueHolder>& args);
|
|
ValueHolder unixts(Script& , std::vector<ValueHolder>& args);
|
|
ValueHolder unixnow(Script& , std::vector<ValueHolder>& args);
|
|
ValueHolder now(Script& , std::vector<ValueHolder>& args);
|
|
ValueHolder subwintype(Script&, std::vector<ValueHolder>& args);
|
|
ValueHolder subwinname(Script&, std::vector<ValueHolder>& args);
|
|
ValueHolder rand(Script&, std::vector<ValueHolder>& args);
|
|
}
|
|
|
|
#endif // SCRIPTGENERALUTILS_H
|
|
|