From d56a4196b281539692874764a323f5521f15cb2d Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Sun, 9 Jun 2019 07:56:23 -0400 Subject: [PATCH] rename --- CMakeLists.txt | 2 +- testbed/CMakeLists.txt | 1 + testractor/testractor.cpp => testbed/main.cpp | 2 +- {testractor => testbed}/resource.h | 0 .../testractor.rc => testbed/resource.rc | Bin 5894 -> 5896 bytes testractor/CMakeLists.txt | 1 - 6 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 testbed/CMakeLists.txt rename testractor/testractor.cpp => testbed/main.cpp (90%) rename {testractor => testbed}/resource.h (100%) rename testractor/testractor.rc => testbed/resource.rc (98%) delete mode 100644 testractor/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 268576e..a3270e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,4 +34,4 @@ add_subdirectory(GUI) add_subdirectory(GUI/host) add_subdirectory(texthook) add_subdirectory(extensions) -add_subdirectory(testractor) +add_subdirectory(testbed) diff --git a/testbed/CMakeLists.txt b/testbed/CMakeLists.txt new file mode 100644 index 0000000..66c9427 --- /dev/null +++ b/testbed/CMakeLists.txt @@ -0,0 +1 @@ +add_executable(Testbed WIN32 main.cpp resource.rc) diff --git a/testractor/testractor.cpp b/testbed/main.cpp similarity index 90% rename from testractor/testractor.cpp rename to testbed/main.cpp index 29d17a9..1c99f21 100644 --- a/testractor/testractor.cpp +++ b/testbed/main.cpp @@ -4,7 +4,7 @@ wchar_t buffer[1000] = {}; std::array vars = {}; -int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE, _In_ LPWSTR, _In_ int) +int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int) { ShowWindow(CreateDialogParamW(hInstance, MAKEINTRESOURCEW(IDD_DIALOG1), NULL, [](HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) -> INT_PTR { diff --git a/testractor/resource.h b/testbed/resource.h similarity index 100% rename from testractor/resource.h rename to testbed/resource.h diff --git a/testractor/testractor.rc b/testbed/resource.rc similarity index 98% rename from testractor/testractor.rc rename to testbed/resource.rc index 611d32dedf49adb39c2a7ad5815cd86fa15722b9..64dd59d3d94ec63264651d5e7ab4123093e8d667 100644 GIT binary patch delta 44 ycmZqE>(JZqij~)p!GJ-BL4m=L!IZ&t@^{vQydey!48;s33`sybW%FS+X8`~J1`AdI delta 42 ycmeCsYt!5Cij~)h!I(jZL4m=L!HmIj@^{vQ+%62642cXm4EYS{n~$xeDX} diff --git a/testractor/CMakeLists.txt b/testractor/CMakeLists.txt deleted file mode 100644 index 7bca354..0000000 --- a/testractor/CMakeLists.txt +++ /dev/null @@ -1 +0,0 @@ -add_executable(Testractor WIN32 testractor.cpp testractor.rc)