From 3593a483d5566779f1d56e037615685cdc77c0a0 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 12:05:47 +0000 Subject: modification structure svn --- IvyToDel/IvyPPC/Pcre.cs | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 IvyToDel/IvyPPC/Pcre.cs (limited to 'IvyToDel/IvyPPC/Pcre.cs') 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 -{ - /// - /// Description résumée de Pcre. - /// - 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 - // - } - } -} -- cgit v1.1