Changeset 340
- Timestamp:
- 10/20/07 19:34:50 (15 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Apple Wireless Keyboard Helper/trunk/Misuzilla.Applications.AppleWirelessKeyboardHelper/Program.cs
r339 r340 1 1 using System; 2 using System.Windows.Forms; 2 using System.IO; 3 using System.Text; 4 using System.Collections.Generic; 3 5 using System.Diagnostics; 4 6 using System.Runtime.InteropServices; 5 7 using System.Reflection; 8 using System.Windows.Forms; 6 9 7 10 using IronPython; 8 11 using Microsoft.Scripting; 9 using System.IO;10 using System.Text;11 12 using Microsoft.Scripting.Hosting; 12 using System.Collections.Generic;13 13 14 14 namespace Misuzilla.Applications.AppleWirelessKeyboardHelper … … 126 126 127 127 IScriptEnvironment scriptEnv = ScriptEnvironment.GetEnvironment(); 128 List<ICompiledCode> compiledCodes = new List<ICompiledCode>();129 128 _module = scriptEnv.CreateModule("ScriptModule"); 130 129
