From 91b46db515171dfaa3718fa4566f106243617f66 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Tue, 18 Mar 2003 01:00:33 +0000 Subject: [PATCH] Removed Extra unnneed messagebox test svn path=/trunk/; revision=4331 --- reactos/apps/tests/tests/hello2/.cvsignore | 3 --- reactos/apps/tests/tests/hello2/Makefile | 26 ---------------------- reactos/apps/tests/tests/hello2/hello2.c | 9 -------- 3 files changed, 38 deletions(-) delete mode 100644 reactos/apps/tests/tests/hello2/.cvsignore delete mode 100644 reactos/apps/tests/tests/hello2/Makefile delete mode 100644 reactos/apps/tests/tests/hello2/hello2.c diff --git a/reactos/apps/tests/tests/hello2/.cvsignore b/reactos/apps/tests/tests/hello2/.cvsignore deleted file mode 100644 index 0ec02ac96f6..00000000000 --- a/reactos/apps/tests/tests/hello2/.cvsignore +++ /dev/null @@ -1,3 +0,0 @@ -*.exe -*.o -*.sym diff --git a/reactos/apps/tests/tests/hello2/Makefile b/reactos/apps/tests/tests/hello2/Makefile deleted file mode 100644 index 6929eaa28b9..00000000000 --- a/reactos/apps/tests/tests/hello2/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# -# -# -PATH_TO_TOP = ../../../.. - -PROGS = hello2 - -OBJECTS = hello2.o - -LIBS = # gdi32.a -CFLAGS = - -all: $(PROGS:%=%.exe) - -.phony: all - -clean: - - $(RM) *.o *.coff *.exe *.sym - -.phony: clean - -hello2.exe: $(OBJECTS) - $(CC) $(CFLAGS) -Wl,--subsystem,windows $(OBJECTS) $(LIBS) -o hello2.exe - $(NM) --numeric-sort hello2.exe > hello2.sym - -include $(PATH_TO_TOP)/rules.mak diff --git a/reactos/apps/tests/tests/hello2/hello2.c b/reactos/apps/tests/tests/hello2/hello2.c deleted file mode 100644 index 166eec4daa7..00000000000 --- a/reactos/apps/tests/tests/hello2/hello2.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "windows.h" - -int PASCAL WinMain (HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) -{ - return MessageBox((HWND)0, - (LPSTR)"Hello, hello!", - (LPSTR)"Hello Wine Application", - (MB_OK | MB_ICONEXCLAMATION)); -}