summaryrefslogtreecommitdiff
path: root/IvyToDel/IvyPPC/Pcre.cs
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:05:47 +0000
committerfcolin2007-02-01 12:05:47 +0000
commit3593a483d5566779f1d56e037615685cdc77c0a0 (patch)
tree300986bb2f463148fd0773efc5f69654ae2cd53f /IvyToDel/IvyPPC/Pcre.cs
parent3ce9b3f180e3f52c7be79e0a23bbd1a0b5120ac6 (diff)
downloadivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.zip
ivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.tar.gz
ivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.tar.bz2
ivy-csharp-3593a483d5566779f1d56e037615685cdc77c0a0.tar.xz
modification structure svn
Diffstat (limited to 'IvyToDel/IvyPPC/Pcre.cs')
-rw-r--r--IvyToDel/IvyPPC/Pcre.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/IvyToDel/IvyPPC/Pcre.cs b/IvyToDel/IvyPPC/Pcre.cs
deleted file mode 100644
index 9286b65..0000000
--- a/IvyToDel/IvyPPC/Pcre.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-
-namespace IvyBus
-{
- /// <summary>
- /// Description résumée de Pcre.
- /// </summary>
- public class Pcre
- {
- [DllImport("pcre.dll")]
- public static extern void *pcre_compile( string pattern, int options,
- out string errptr, out int erroffset,
- string tableptr);
- [DllImport("pcre.dll")]
- internal static extern void pcre_free(void *pcre);
-
- [DllImport("pcre.dll")]
- internal static extern int pcre_exec( void *code, string extra,
- string subject, int length, int startoffset,
- int options, out int[] ovector, int ovecsize);
-
- [DllImport("pcre.dll")]
- internal static extern int pcre_get_substring_list(string subject,
- int *ovector, int stringcount, out string[] listptr);
- [DllImport("pcre.dll")]
- internal static extern void pcre_free_substring_list( ref string[] stringptr);
-
- public Pcre()
- {
- //
- // TODO : ajoutez ici la logique du constructeur
- //
- }
- }
-}