diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-16 17:27:21 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-16 17:27:21 +0000 |
commit | 7fb3e4a0ffcc61fc3f457fe35d46a0e32bdc18f1 (patch) | |
tree | f2428423e271c54507bf55ffbdc4d42e6b1cfe17 /plugins/ClientChangeNotify/src/pcre.h | |
parent | 365183d00b2eaad4d7c1a38bf346c6635e2c8031 (diff) |
all warnings fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@14968 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ClientChangeNotify/src/pcre.h')
-rw-r--r-- | plugins/ClientChangeNotify/src/pcre.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/ClientChangeNotify/src/pcre.h b/plugins/ClientChangeNotify/src/pcre.h new file mode 100644 index 0000000000..0a854af9c6 --- /dev/null +++ b/plugins/ClientChangeNotify/src/pcre.h @@ -0,0 +1,27 @@ +/*
+ Pcre.h
+ Copyright (c) 2007-2008 Chervov Dmitry
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#include "CString.h"
+#include "..\..\..\libs\pcre16\src\pcre.h"
+
+#pragma once
+
+int PcreCheck(TCString Str, int StartingID = -1);
+void FreePcreCompileData();
+TCString CompileRegexp(TCString Regexp, int bAddAsUsualSubstring = 0, int ID = 0);
|