This commit is contained in:
Akash Mozumdar 2019-06-09 07:56:23 -04:00
parent d4d6c6c8b6
commit d56a4196b2
6 changed files with 3 additions and 3 deletions

View File

@ -34,4 +34,4 @@ add_subdirectory(GUI)
add_subdirectory(GUI/host)
add_subdirectory(texthook)
add_subdirectory(extensions)
add_subdirectory(testractor)
add_subdirectory(testbed)

1
testbed/CMakeLists.txt Normal file
View File

@ -0,0 +1 @@
add_executable(Testbed WIN32 main.cpp resource.rc)

View File

@ -4,7 +4,7 @@
wchar_t buffer[1000] = {};
std::array<int, 10> 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
{

View File

@ -1 +0,0 @@
add_executable(Testractor WIN32 testractor.cpp testractor.rc)