mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Removed Extra unnneed messagebox test
svn path=/trunk/; revision=4331
This commit is contained in:
parent
201760656a
commit
91b46db515
3 changed files with 0 additions and 38 deletions
|
@ -1,3 +0,0 @@
|
||||||
*.exe
|
|
||||||
*.o
|
|
||||||
*.sym
|
|
|
@ -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
|
|
|
@ -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));
|
|
||||||
}
|
|
Loading…
Reference in a new issue