*** empty log message ***
This commit is contained in:
parent
383b175046
commit
0f54badbbb
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: asecom.idl,v 1.7 2007-04-22 07:47:15 bacon Exp $
|
* $Id: asecom.idl,v 1.8 2007-04-22 08:41:51 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import "oaidl.idl";
|
import "oaidl.idl";
|
||||||
@ -156,7 +156,7 @@ interface IAwk : IDispatch
|
|||||||
[
|
[
|
||||||
uuid(F9C69806-16A1-4162-998A-876B33C470BF),
|
uuid(F9C69806-16A1-4162-998A-876B33C470BF),
|
||||||
version(1.0),
|
version(1.0),
|
||||||
helpstring("ASE 1.0 Type Library")
|
helpstring("ASECOM 1.0 Type Library")
|
||||||
]
|
]
|
||||||
library ASECOM
|
library ASECOM
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: Awk.cs,v 1.1 2007-04-22 08:30:33 bacon Exp $
|
* $Id: Awk.cs,v 1.2 2007-04-22 08:40:29 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
@ -9,7 +9,7 @@ using System.IO;
|
|||||||
|
|
||||||
using COM = System.Runtime.InteropServices.ComTypes;
|
using COM = System.Runtime.InteropServices.ComTypes;
|
||||||
|
|
||||||
namespace ASE
|
namespace ASETestCom
|
||||||
{
|
{
|
||||||
public class Awk : ASECOM.IAwkEvents
|
public class Awk : ASECOM.IAwkEvents
|
||||||
{
|
{
|
||||||
|
2
ase/test/cnt/AwkForm.Designer.cs
generated
2
ase/test/cnt/AwkForm.Designer.cs
generated
@ -1,4 +1,4 @@
|
|||||||
namespace asetestcom_net
|
namespace ASETestCom
|
||||||
{
|
{
|
||||||
partial class AwkForm
|
partial class AwkForm
|
||||||
{
|
{
|
||||||
|
@ -7,7 +7,7 @@ using System.Text;
|
|||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace asetestcom_net
|
namespace ASETestCom
|
||||||
{
|
{
|
||||||
public partial class AwkForm : Form
|
public partial class AwkForm : Form
|
||||||
{
|
{
|
||||||
@ -18,7 +18,7 @@ namespace asetestcom_net
|
|||||||
|
|
||||||
private void btnRun_Click(object sender, EventArgs e)
|
private void btnRun_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
ASE.Awk awk = new ASE.StdAwk ();
|
Awk awk = new StdAwk ();
|
||||||
|
|
||||||
//System.Text.Encoding.Default
|
//System.Text.Encoding.Default
|
||||||
awk.SourceInputStream = new MemoryStream (UnicodeEncoding.UTF8.GetBytes(tbxSourceInput.Text));
|
awk.SourceInputStream = new MemoryStream (UnicodeEncoding.UTF8.GetBytes(tbxSourceInput.Text));
|
||||||
|
@ -2,7 +2,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace asetestcom_net
|
namespace ASETestCom
|
||||||
{
|
{
|
||||||
static class Program
|
static class Program
|
||||||
{
|
{
|
||||||
|
4
ase/test/cnt/Properties/Resources.Designer.cs
generated
4
ase/test/cnt/Properties/Resources.Designer.cs
generated
@ -8,7 +8,7 @@
|
|||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace asetestcom_net.Properties {
|
namespace ASETestCom.Properties {
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ namespace asetestcom_net.Properties {
|
|||||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
get {
|
get {
|
||||||
if (object.ReferenceEquals(resourceMan, null)) {
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("asetestcom_net.Properties.Resources", typeof(Resources).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASETestCom.Properties.Resources", typeof(Resources).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
||||||
|
2
ase/test/cnt/Properties/Settings.Designer.cs
generated
2
ase/test/cnt/Properties/Settings.Designer.cs
generated
@ -8,7 +8,7 @@
|
|||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace asetestcom_net.Properties {
|
namespace ASETestCom.Properties {
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: StdAwk.cs,v 1.1 2007-04-22 08:30:33 bacon Exp $
|
* $Id: StdAwk.cs,v 1.2 2007-04-22 08:40:29 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace ASE
|
namespace ASETestCom
|
||||||
{
|
{
|
||||||
public class StdAwk: Awk
|
public class StdAwk: Awk
|
||||||
{
|
{
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<ProjectGuid>{F14B75D8-3ED7-4621-B5B9-E96A80B5D809}</ProjectGuid>
|
<ProjectGuid>{F14B75D8-3ED7-4621-B5B9-E96A80B5D809}</ProjectGuid>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>asetestcom_net</RootNamespace>
|
<RootNamespace>ASETestCom</RootNamespace>
|
||||||
<AssemblyName>asecom_net</AssemblyName>
|
<AssemblyName>asecom_net</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
Loading…
Reference in New Issue
Block a user