diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard.sln --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard.sln Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FreedomKeyboard", "FreedomKeyboard\FreedomKeyboard.csproj", "{2DE3F1A7-336A-4C8B-B169-0525E6789A25}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2DE3F1A7-336A-4C8B-B169-0525E6789A25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2DE3F1A7-336A-4C8B-B169-0525E6789A25}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2DE3F1A7-336A-4C8B-B169-0525E6789A25}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {2DE3F1A7-336A-4C8B-B169-0525E6789A25}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2DE3F1A7-336A-4C8B-B169-0525E6789A25}.Release|Any CPU.Build.0 = Release|Any CPU + {2DE3F1A7-336A-4C8B-B169-0525E6789A25}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Form1.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Form1.Designer.cs Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,110 @@ +namespace FreedomKeyboard +{ + partial class frmMain + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + private System.Windows.Forms.MainMenu mainMenu1; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.mainMenu1 = new System.Windows.Forms.MainMenu(); + this.menuItem1 = new System.Windows.Forms.MenuItem(); + this.mnuExit = new System.Windows.Forms.MenuItem(); + this.txtKey = new System.Windows.Forms.TextBox(); + this.lblDetect = new System.Windows.Forms.Label(); + this.spKey = new System.IO.Ports.SerialPort(this.components); + this.btnStart = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // mainMenu1 + // + this.mainMenu1.MenuItems.Add(this.menuItem1); + this.mainMenu1.MenuItems.Add(this.mnuExit); + // + // menuItem1 + // + this.menuItem1.Text = "Options"; + // + // mnuExit + // + this.mnuExit.Text = "Exit"; + this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click); + // + // txtKey + // + this.txtKey.Location = new System.Drawing.Point(136, 20); + this.txtKey.Name = "txtKey"; + this.txtKey.Size = new System.Drawing.Size(100, 21); + this.txtKey.TabIndex = 0; + // + // lblDetect + // + this.lblDetect.Location = new System.Drawing.Point(3, 20); + this.lblDetect.Name = "lblDetect"; + this.lblDetect.Size = new System.Drawing.Size(127, 20); + this.lblDetect.Text = "Detected Key Press:"; + // + // spKey + // + this.spKey.BaudRate = 115200; + // + // btnStart + // + this.btnStart.Location = new System.Drawing.Point(111, 47); + this.btnStart.Name = "btnStart"; + this.btnStart.Size = new System.Drawing.Size(125, 40); + this.btnStart.TabIndex = 1; + this.btnStart.Text = "Start"; + this.btnStart.Click += new System.EventHandler(this.btnStart_Click); + // + // frmMain + // + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.AutoScroll = true; + this.ClientSize = new System.Drawing.Size(240, 268); + this.Controls.Add(this.btnStart); + this.Controls.Add(this.lblDetect); + this.Controls.Add(this.txtKey); + this.Menu = this.mainMenu1; + this.Name = "frmMain"; + this.Text = "FreedomKeyboard Driver"; + this.Load += new System.EventHandler(this.frmMain_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.MenuItem menuItem1; + private System.Windows.Forms.MenuItem mnuExit; + private System.Windows.Forms.TextBox txtKey; + private System.Windows.Forms.Label lblDetect; + private System.IO.Ports.SerialPort spKey; + private System.Windows.Forms.Button btnStart; + } +} + diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Form1.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Form1.cs Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,57 @@ +using System; +using System.Linq; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Text; +using System.Windows.Forms; +using System.IO.Ports; + +namespace FreedomKeyboard +{ + public partial class frmMain : Form + { + private Keyboard fk; + public frmMain() + { + InitializeComponent(); + } + + private void mnuExit_Click(object sender, EventArgs e) + { + + this.Close(); + } + + private void frmMain_Load(object sender, EventArgs e) + { + fk = new Keyboard(); + this.spKey.DataReceived += new SerialDataReceivedEventHandler(SerialEvent); + //fk.RawKeyPress_Event += new Keyboard.KeyPress(data); + } + + private void btnStart_Click(object sender, EventArgs e) + { + //fk.Enable = true; + this.spKey.Open(); + } + private void data(string e) + { + this.txtKey.Text = e.ToString(); + } + private void SerialEvent(object sender, SerialDataReceivedEventArgs e) + { + //string s = ""; + //s = new string((char)this.spKey.ReadChar(), 1); + char x; + while (spKey.BytesToRead != 0) + { + x = (char)spKey.ReadChar(); + this.fk.Key(x); + //this.fk.Key((char)spKey.ReadChar()); + } + //MessageBox.Show(s); + } + } +} \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Form1.resx --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Form1.resx Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 126, 17 + + + Pocket_PC + + + True + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/FreedomKeyboard.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/FreedomKeyboard.csproj Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,99 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {2DE3F1A7-336A-4C8B-B169-0525E6789A25} + WinExe + Properties + FreedomKeyboard + FreedomKeyboard + {4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + PocketPC + b2c48bd2-963d-4549-9169-1fa021dce484 + 5.2 + FreedomKeyboard + v3.5 + Windows Mobile 6 Professional SDK + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE;$(PlatformFamilyName) + true + true + prompt + 512 + 4 + Off + + + pdbonly + true + bin\Release\ + TRACE;$(PlatformFamilyName) + true + true + prompt + 512 + 4 + Off + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + + + + + + + + + + + + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/FreedomKeyboard.csproj.user --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/FreedomKeyboard.csproj.user Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,5 @@ + + + b2c48bd2-963d-4549-9169-1fa021dce484d6518ffb-710f-11d3-99f2-00105a0df099 + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Keyboard.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Keyboard.cs Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,111 @@ +using System; +using System.Linq; +using System.Collections.Generic; +using System.Text; +using System.Windows.Forms; +using System.Data; +using System.IO.Ports; +using System.Collections; +using System.IO; +using System.Runtime.InteropServices; + +namespace FreedomKeyboard +{ + + class Keyboard + { + [DllImport("coredll.dll")] + static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo); + //public event ParseKey KeyPress_Event; + //public delegate void ParseKey(string key); + //private char k1; + //private char k2; + SortedList keys = new SortedList(); + private bool shift = false; + //private bool rshift = false; + public Keyboard() + { + //Keys ky = new Keys(); + //ky = (Keys)Enum.Parse(ky.GetType(), "a", false); + + StreamReader sr = new StreamReader("\\keys.txt"); + + string strLine; + string[] tmp; + while ((strLine = sr.ReadLine()) != null) + { + try + { + tmp = strLine.Split(':'); + keys.Add(tmp[0], Int32.Parse(tmp[1])); + } + catch (Exception e) + { + + } + } + //keys. + //this.ser = sp; + //this.ser.DataReceived += new SerialDataReceivedEventHandler(this.SerialEvent); + } + public void Key(char key) + { + const int KEYEVENTF_KEYPRESS = 0x0000; + const int KEYEVENTF_KEYUP = 0x0002; + const int VK_LSHIFT = 0xA0; + const int VK_RSHIFT = 0xA1; + if ((int)key == 59 || (int)key == 60) + { + shift = true; + return; + } + if ((int)key == 122 || (int)key == 123) + { + shift = false; + return; + } + if ((int)key == 95) + { + keybd_event((byte)Keys.Back, 0, KEYEVENTF_KEYPRESS, 0); + keybd_event((byte)Keys.Back, 0, KEYEVENTF_KEYUP, 0); + } + if ((int)key == 85 || (int)key == 116) + { + keybd_event((byte)Keys.Space, 0, KEYEVENTF_KEYPRESS, 0); + keybd_event((byte)Keys.Space, 0, KEYEVENTF_KEYUP, 0); + } + Keys ky = new Keys(); + //Keys.spa + string keyx; + if (this.keys.ContainsValue((int)key)) + { + IDictionaryEnumerator _enumerator = keys.GetEnumerator(); + while (_enumerator.MoveNext()) + { + if ((int)_enumerator.Value == (int)key) + { + keyx = (string)_enumerator.Key; + try + { + ky = (Keys)Enum.Parse(ky.GetType(), keyx.ToUpper(), false); + } + catch (Exception e) + { + ky = (Keys)Enum.Parse(ky.GetType(), keyx, false); + } + + + + if (shift) + keybd_event(VK_LSHIFT, 0, KEYEVENTF_KEYPRESS, 0); + keybd_event((byte)ky, 0, KEYEVENTF_KEYPRESS, 0); + keybd_event((byte)ky, 0, KEYEVENTF_KEYUP, 0); + if (shift) + keybd_event(VK_LSHIFT, 0, KEYEVENTF_KEYUP, 0); + } + } + } + } + + } +} diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Program.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Program.cs Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,19 @@ +using System; +using System.Linq; +using System.Collections.Generic; +using System.Windows.Forms; + +namespace FreedomKeyboard +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [MTAThread] + static void Main() + { + Application.Run(new frmMain()); + } + } +} \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Properties/AssemblyInfo.cs Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("FreedomKeyboard")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("FreedomKeyboard")] +[assembly: AssemblyCopyright("Copyright © 2010")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("cd97fb09-1769-4d13-b339-bd7cd6e4a896")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +[assembly: AssemblyVersion("1.0.0.0")] + +// Below attribute is to suppress FxCop warning "CA2232 : Microsoft.Usage : Add STAThreadAttribute to assembly" +// as Device app does not support STA thread. +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2232:MarkWindowsFormsEntryPointsWithStaThread")] diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Properties/Resources.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Properties/Resources.Designer.cs Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,68 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FreedomKeyboard.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the Strongly Typed Resource Builder + // class via a tool like ResGen or Visual Studio.NET. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + class Resources + { + + private static System.Resources.ResourceManager _resMgr; + + private static System.Globalization.CultureInfo _resCulture; + + /*FamANDAssem*/ + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public static System.Resources.ResourceManager ResourceManager + { + get + { + if ((_resMgr == null)) + { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("FreedomKeyboard.Properties.Resources", typeof(Resources).Assembly); + _resMgr = temp; + } + return _resMgr; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public static System.Globalization.CultureInfo Culture + { + get + { + return _resCulture; + } + set + { + _resCulture = value; + } + } + } +} diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/Properties/Resources.resx --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/Properties/Resources.resx Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/bin/Debug/FreedomKeyboard.exe Binary file FreedomKeyboard/bin/Debug/FreedomKeyboard.exe has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/bin/Debug/FreedomKeyboard.pdb Binary file FreedomKeyboard/bin/Debug/FreedomKeyboard.pdb has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/bin/Release/FreedomKeyboard.exe Binary file FreedomKeyboard/bin/Release/FreedomKeyboard.exe has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/bin/Release/FreedomKeyboard.pdb Binary file FreedomKeyboard/bin/Release/FreedomKeyboard.pdb has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/keys.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/keys.txt Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,40 @@ +D0:92 +D1:64 +D2:65 +D3:66 +D4:67 +D5:68 +D6:69 +D7:89 +D8:90 +D9:91 +a:75 +b:84 +c:82 +d:77 +e:72 +f:78 +g:79 +h:103 +i:98 +j:104 +k:105 +l:106 +m:111 +n:110 +o:99 +p:100 +q:70 +r:73 +s:76 +t:74 +u:97 +v:83 +w:71 +x:81 +y:96 +z:80 +Space:85 +Space:116 +Tab:86 +CapsLock:87 \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Debug/FreedomKeyboard.Properties.Resources.resources Binary file FreedomKeyboard/obj/Debug/FreedomKeyboard.Properties.Resources.resources has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Debug/FreedomKeyboard.csproj.FileListAbsolute.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/obj/Debug/FreedomKeyboard.csproj.FileListAbsolute.txt Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,8 @@ +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\bin\Debug\FreedomKeyboard.exe +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\bin\Debug\FreedomKeyboard.pdb +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Debug\ResolveAssemblyReference.cache +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Debug\FreedomKeyboard.frmMain.resources +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Debug\FreedomKeyboard.Properties.Resources.resources +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Debug\FreedomKeyboard.csproj.GenerateResource.Cache +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Debug\FreedomKeyboard.exe +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Debug\FreedomKeyboard.pdb diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Debug/FreedomKeyboard.csproj.GenerateResource.Cache Binary file FreedomKeyboard/obj/Debug/FreedomKeyboard.csproj.GenerateResource.Cache has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Debug/FreedomKeyboard.exe Binary file FreedomKeyboard/obj/Debug/FreedomKeyboard.exe has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Debug/FreedomKeyboard.frmMain.resources Binary file FreedomKeyboard/obj/Debug/FreedomKeyboard.frmMain.resources has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Release/FreedomKeyboard.Properties.Resources.resources Binary file FreedomKeyboard/obj/Release/FreedomKeyboard.Properties.Resources.resources has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Release/FreedomKeyboard.csproj.FileListAbsolute.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FreedomKeyboard/obj/Release/FreedomKeyboard.csproj.FileListAbsolute.txt Sun Aug 18 22:21:43 2013 -0500 @@ -0,0 +1,8 @@ +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\bin\Release\FreedomKeyboard.exe +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\bin\Release\FreedomKeyboard.pdb +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Release\ResolveAssemblyReference.cache +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Release\FreedomKeyboard.frmMain.resources +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Release\FreedomKeyboard.Properties.Resources.resources +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Release\FreedomKeyboard.csproj.GenerateResource.Cache +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Release\FreedomKeyboard.exe +C:\Users\nathan\Documents\Visual Studio 2008\Projects\FreedomKeyboard\FreedomKeyboard\obj\Release\FreedomKeyboard.pdb diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Release/FreedomKeyboard.csproj.GenerateResource.Cache Binary file FreedomKeyboard/obj/Release/FreedomKeyboard.csproj.GenerateResource.Cache has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Release/FreedomKeyboard.exe Binary file FreedomKeyboard/obj/Release/FreedomKeyboard.exe has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Release/FreedomKeyboard.frmMain.resources Binary file FreedomKeyboard/obj/Release/FreedomKeyboard.frmMain.resources has changed diff -r 0000000000000000000000000000000000000000 -r d4c86e665668dbecb90b0d5e618325392dac00fc FreedomKeyboard/obj/Release/FreedomKeyboard.pdb Binary file FreedomKeyboard/obj/Release/FreedomKeyboard.pdb has changed