Example #1
0
 internal static extern int tidyParseSource(IntPtr tdoc, ref TidyInputSource source);
Example #2
0
 int IPInvoke.tidyParseSource(IntPtr tdoc, ref TidyInputSource source)
 {
     return tidyParseSource(tdoc, ref source);
 }
Example #3
0
 internal InputSource(Stream stream)
 {
     this.stream = stream;
     this.TidyInputSource = new Interop.TidyInputSource(new Interop.TidyGetByteFunc(OnGetByte), new Interop.TidyUngetByteFunc(OnUngetByte), new Interop.TidyEOFFunc(OnEOF));
 }
Example #4
0
 internal static extern int tidyParseSource(IntPtr tdoc, ref TidyInputSource source);
Example #5
0
 internal InputSource(Stream stream)
 {
     this.stream = stream;
     TidyInputSource = new TidyInputSource(OnGetByte, OnUngetByte, OnEOF);
 }