diff --git a/agent/Agent.cc b/agent/Agent.cc index bd4add7..1dfaa60 100644 --- a/agent/Agent.cc +++ b/agent/Agent.cc @@ -24,9 +24,9 @@ #include "Terminal.h" #include "NamedPipe.h" #include "AgentAssert.h" -#include "../Shared/DebugClient.h" -#include "../Shared/AgentMsg.h" -#include "../Shared/Buffer.h" +#include "../shared/DebugClient.h" +#include "../shared/AgentMsg.h" +#include "../shared/Buffer.h" #include #include #include diff --git a/agent/AgentAssert.cc b/agent/AgentAssert.cc index 3adcdd9..410f80e 100644 --- a/agent/AgentAssert.cc +++ b/agent/AgentAssert.cc @@ -19,7 +19,7 @@ // IN THE SOFTWARE. #include "AgentAssert.h" -#include "../Shared/DebugClient.h" +#include "../shared/DebugClient.h" #include // Calling the standard assert() function does not work in the agent because diff --git a/agent/AgentDebugClient.cc b/agent/AgentDebugClient.cc index 93b1222..0607474 100644 --- a/agent/AgentDebugClient.cc +++ b/agent/AgentDebugClient.cc @@ -20,4 +20,4 @@ // This is a hack. I want to compile DebugClient.cc into the project, // and I don't know how to setup a Makefile to do it. -#include "../Shared/DebugClient.cc" +#include "../shared/DebugClient.cc" diff --git a/agent/ConsoleInput.cc b/agent/ConsoleInput.cc index 9bc00fa..7673249 100644 --- a/agent/ConsoleInput.cc +++ b/agent/ConsoleInput.cc @@ -21,7 +21,7 @@ #include "ConsoleInput.h" #include "Win32Console.h" #include "DsrSender.h" -#include "../Shared/DebugClient.h" +#include "../shared/DebugClient.h" #include #include diff --git a/agent/EventLoop.cc b/agent/EventLoop.cc index 2b31aec..f1fdaa3 100644 --- a/agent/EventLoop.cc +++ b/agent/EventLoop.cc @@ -21,7 +21,7 @@ #include "EventLoop.h" #include "NamedPipe.h" #include "AgentAssert.h" -#include "../Shared/DebugClient.h" +#include "../shared/DebugClient.h" EventLoop::EventLoop() : m_exiting(false), m_pollInterval(0) { diff --git a/agent/NamedPipe.cc b/agent/NamedPipe.cc index c5491be..be824b8 100644 --- a/agent/NamedPipe.cc +++ b/agent/NamedPipe.cc @@ -21,7 +21,7 @@ #include "NamedPipe.h" #include "EventLoop.h" #include "AgentAssert.h" -#include "../Shared/DebugClient.h" +#include "../shared/DebugClient.h" #include NamedPipe::NamedPipe() : diff --git a/agent/Win32Console.cc b/agent/Win32Console.cc index 38e9bd8..30beef6 100644 --- a/agent/Win32Console.cc +++ b/agent/Win32Console.cc @@ -20,7 +20,7 @@ #include "Win32Console.h" #include "AgentAssert.h" -#include "../Shared/DebugClient.h" +#include "../shared/DebugClient.h" #include Win32Console::Win32Console() diff --git a/libwinpty/WinPtyDebugClient.cc b/libwinpty/WinPtyDebugClient.cc index 93b1222..0607474 100644 --- a/libwinpty/WinPtyDebugClient.cc +++ b/libwinpty/WinPtyDebugClient.cc @@ -20,4 +20,4 @@ // This is a hack. I want to compile DebugClient.cc into the project, // and I don't know how to setup a Makefile to do it. -#include "../Shared/DebugClient.cc" +#include "../shared/DebugClient.cc" diff --git a/libwinpty/winpty.cc b/libwinpty/winpty.cc index 73a05b5..9d5e7f2 100644 --- a/libwinpty/winpty.cc +++ b/libwinpty/winpty.cc @@ -27,9 +27,9 @@ #include #include #include -#include "../Shared/DebugClient.h" -#include "../Shared/AgentMsg.h" -#include "../Shared/Buffer.h" +#include "../shared/DebugClient.h" +#include "../shared/AgentMsg.h" +#include "../shared/Buffer.h" // TODO: Error handling, handle out-of-memory. diff --git a/Misc/.gitignore b/misc/.gitignore similarity index 100% rename from Misc/.gitignore rename to misc/.gitignore diff --git a/Misc/DebugClient.py b/misc/DebugClient.py similarity index 100% rename from Misc/DebugClient.py rename to misc/DebugClient.py diff --git a/Misc/DebugServer.py b/misc/DebugServer.py similarity index 100% rename from Misc/DebugServer.py rename to misc/DebugServer.py diff --git a/Misc/FormatChar.h b/misc/FormatChar.h similarity index 100% rename from Misc/FormatChar.h rename to misc/FormatChar.h diff --git a/Misc/LICENSE b/misc/LICENSE similarity index 100% rename from Misc/LICENSE rename to misc/LICENSE diff --git a/Misc/SelectAllTest.cc b/misc/SelectAllTest.cc similarity index 100% rename from Misc/SelectAllTest.cc rename to misc/SelectAllTest.cc diff --git a/Misc/ShowArgv.cc b/misc/ShowArgv.cc similarity index 100% rename from Misc/ShowArgv.cc rename to misc/ShowArgv.cc diff --git a/Misc/ShowConsoleInput.cc b/misc/ShowConsoleInput.cc similarity index 100% rename from Misc/ShowConsoleInput.cc rename to misc/ShowConsoleInput.cc diff --git a/Misc/Spew.py b/misc/Spew.py similarity index 100% rename from Misc/Spew.py rename to misc/Spew.py diff --git a/Misc/UnixEcho.cc b/misc/UnixEcho.cc similarity index 100% rename from Misc/UnixEcho.cc rename to misc/UnixEcho.cc diff --git a/Misc/VkEscapeTest.cc b/misc/VkEscapeTest.cc similarity index 100% rename from Misc/VkEscapeTest.cc rename to misc/VkEscapeTest.cc diff --git a/Misc/Win32Echo1.cc b/misc/Win32Echo1.cc similarity index 100% rename from Misc/Win32Echo1.cc rename to misc/Win32Echo1.cc diff --git a/Misc/Win32Echo2.cc b/misc/Win32Echo2.cc similarity index 100% rename from Misc/Win32Echo2.cc rename to misc/Win32Echo2.cc diff --git a/Misc/Win32Test1.cc b/misc/Win32Test1.cc similarity index 96% rename from Misc/Win32Test1.cc rename to misc/Win32Test1.cc index 84d3ccc..d5f0f26 100644 --- a/Misc/Win32Test1.cc +++ b/misc/Win32Test1.cc @@ -1,5 +1,5 @@ #define _WIN32_WINNT 0x0501 -#include "../Shared/DebugClient.cc" +#include "../shared/DebugClient.cc" #include #include diff --git a/Misc/Win32Test2.cc b/misc/Win32Test2.cc similarity index 98% rename from Misc/Win32Test2.cc rename to misc/Win32Test2.cc index b282aee..5dd39df 100644 --- a/Misc/Win32Test2.cc +++ b/misc/Win32Test2.cc @@ -4,7 +4,7 @@ */ #define _WIN32_WINNT 0x0501 -#include "../Shared/DebugClient.cc" +#include "../shared/DebugClient.cc" #include #include diff --git a/Misc/Win32Test3.cc b/misc/Win32Test3.cc similarity index 100% rename from Misc/Win32Test3.cc rename to misc/Win32Test3.cc diff --git a/Misc/Win32Write1.cc b/misc/Win32Write1.cc similarity index 100% rename from Misc/Win32Write1.cc rename to misc/Win32Write1.cc diff --git a/Misc/build_win32.sh b/misc/build_win32.sh similarity index 100% rename from Misc/build_win32.sh rename to misc/build_win32.sh diff --git a/Shared/AgentMsg.h b/shared/AgentMsg.h similarity index 100% rename from Shared/AgentMsg.h rename to shared/AgentMsg.h diff --git a/Shared/Buffer.h b/shared/Buffer.h similarity index 100% rename from Shared/Buffer.h rename to shared/Buffer.h diff --git a/Shared/DebugClient.cc b/shared/DebugClient.cc similarity index 100% rename from Shared/DebugClient.cc rename to shared/DebugClient.cc diff --git a/Shared/DebugClient.h b/shared/DebugClient.h similarity index 100% rename from Shared/DebugClient.h rename to shared/DebugClient.h diff --git a/unix-adapter/Shared.cc b/unix-adapter/Shared.cc index 5508c4f..b63dfdb 100644 --- a/unix-adapter/Shared.cc +++ b/unix-adapter/Shared.cc @@ -18,4 +18,4 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. -#include "../Shared/DebugClient.cc" +#include "../shared/DebugClient.cc" diff --git a/unix-adapter/main.cc b/unix-adapter/main.cc index 89db9fc..015da44 100644 --- a/unix-adapter/main.cc +++ b/unix-adapter/main.cc @@ -31,7 +31,7 @@ #include #include #include -#include "../Shared/DebugClient.h" +#include "../shared/DebugClient.h" #include