using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace asetestnet { public partial class Form1 : Form { public class Awk : ASE.Net.StdAwk { protected override int OpenConsole(ASE.Net.StdAwk.Console console) { return -1; } protected override int CloseConsole(ASE.Net.StdAwk.Console console) { return -1; } protected override int ReadConsole(ASE.Net.StdAwk.Console console, char[] buf, int len) { return -1; } protected override int WriteConsole(ASE.Net.StdAwk.Console console, char[] buf, int len) { return -1; } protected override int FlushConsole(ASE.Net.StdAwk.Console console) { return -1; } protected override int NextConsole(ASE.Net.StdAwk.Console console) { return -1; } } public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { ASE.Net.Awk awk = new Awk(); /*awk.OpenFileHandler += new ASE.Net.Awk.OpenFile (OpenFile); awk.CloseFileHandler += CloseFile;*/ //awk.Open(); awk.SourceInputStream = new System.IO.FileStream("t.awk", System.IO.FileMode.Open, System.IO.FileAccess.Read); awk.SourceOutputStream = new System.IO.FileStream("t.out", System.IO.FileMode.Create, System.IO.FileAccess.Write); awk.Parse(); awk.Run(); } /* private int OpenFile(ASE.Net.Awk.File file) { MessageBox.Show("OpenFile"); file.Handle = "abc"; return 1; } private int CloseFile(ASE.Net.Awk.File file) { MessageBox.Show("CloseFile" + (string)file.Handle); return 0; }*/ } }