From a75a47f9ff928954836856efedcbc456a052ef47 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Thu, 1 Jan 2004 16:21:13 +0000 Subject: [PATCH] removed the messagebox test. Winhello now displays a messagebox during the hotkey test. svn path=/trunk/; revision=7383 --- reactos/apps/tests/messagebox/.cvsignore | 6 ------ reactos/apps/tests/messagebox/makefile | 22 ---------------------- reactos/apps/tests/messagebox/simple.c | 15 --------------- 3 files changed, 43 deletions(-) delete mode 100644 reactos/apps/tests/messagebox/.cvsignore delete mode 100644 reactos/apps/tests/messagebox/makefile delete mode 100644 reactos/apps/tests/messagebox/simple.c diff --git a/reactos/apps/tests/messagebox/.cvsignore b/reactos/apps/tests/messagebox/.cvsignore deleted file mode 100644 index d63774a7353..00000000000 --- a/reactos/apps/tests/messagebox/.cvsignore +++ /dev/null @@ -1,6 +0,0 @@ -*.o -*.d -*.exe -*.coff -*.sym -*.map diff --git a/reactos/apps/tests/messagebox/makefile b/reactos/apps/tests/messagebox/makefile deleted file mode 100644 index 248808de365..00000000000 --- a/reactos/apps/tests/messagebox/makefile +++ /dev/null @@ -1,22 +0,0 @@ - -PATH_TO_TOP = ../../.. - -TARGET_NORC = yes - -TARGET_TYPE = program - -TARGET_APPTYPE = windows - -TARGET_NAME = simple - -TARGET_SDKLIBS = kernel32.a gdi32.a - -TARGET_OBJECTS = $(TARGET_NAME).o - -TARGET_CFLAGS = -Wall -Werror - -include $(PATH_TO_TOP)/rules.mak - -include $(TOOLS_PATH)/helper.mk - -# EOF diff --git a/reactos/apps/tests/messagebox/simple.c b/reactos/apps/tests/messagebox/simple.c deleted file mode 100644 index 915cc712a19..00000000000 --- a/reactos/apps/tests/messagebox/simple.c +++ /dev/null @@ -1,15 +0,0 @@ -/* - * The simplest Windows program you will ever write. - * - * This source code is in the PUBLIC DOMAIN and has NO WARRANTY. - * - * Colin Peters , July 1, 2001. - */ -#include - -int STDCALL -WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmd, int nShow) -{ - MessageBox (NULL, "Hello, ReactOS!", "Hello", MB_OK); - return 0; -}