- Add support for "!wm <value>" and "!wm <name>" commands.

- Update the #develop project file.
- Add list of window message values. Thanks to Royce3.

svn path=/trunk/; revision=20164
This commit is contained in:
Filip Navara 2005-12-14 17:34:00 +00:00
parent fe84901940
commit bd0b0b3d09
9 changed files with 467 additions and 12 deletions

View file

@ -16,6 +16,7 @@ namespace TechBot.Library
private string ntstatusXml;
private string winerrorXml;
private string hresultXml;
private string wmXml;
private string svnCommand;
private IrcClient client;
private ArrayList channels = new ArrayList(); /* IrcChannel */
@ -31,18 +32,20 @@ namespace TechBot.Library
string ntstatusXml,
string winerrorXml,
string hresultXml,
string wmXml,
string svnCommand)
{
this.hostname = hostname;
this.port = port;
this.channelnames = channelnames;
this.botname = botname;
this.chmPath = chmPath;
this.mainChm = mainChm;
this.ntstatusXml = ntstatusXml;
this.winerrorXml = winerrorXml;
this.hresultXml = hresultXml;
this.svnCommand = svnCommand;
this.botname = botname;
this.chmPath = chmPath;
this.mainChm = mainChm;
this.ntstatusXml = ntstatusXml;
this.winerrorXml = winerrorXml;
this.hresultXml = hresultXml;
this.wmXml = wmXml;
this.svnCommand = svnCommand;
}
public void Run()
@ -53,6 +56,7 @@ namespace TechBot.Library
ntstatusXml,
winerrorXml,
hresultXml,
wmXml,
svnCommand);
service.Run();