mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Implemented WPUPostMessage()
svn path=/trunk/; revision=12338
This commit is contained in:
parent
ec977e2072
commit
65c509fce1
2 changed files with 4 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: makefile,v 1.21 2004/11/26 07:41:25 arty Exp $
|
||||
# $Id: makefile,v 1.22 2004/12/26 14:43:00 gvg Exp $
|
||||
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
|
@ -27,7 +27,7 @@ TARGET_CFLAGS += -D_DISABLE_TIDENTS
|
|||
|
||||
TARGET_LFLAGS = -nostartfiles -nostdlib
|
||||
|
||||
TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a dnsapi.a
|
||||
TARGET_SDKLIBS = ntdll.a kernel32.a user32.a advapi32.a dnsapi.a
|
||||
|
||||
TARGET_OBJECTS = misc/bsd.o misc/catalog.o misc/dllmain.o \
|
||||
misc/event.o misc/handle.o misc/ns.o \
|
||||
|
|
|
@ -171,7 +171,7 @@ WPUOpenCurrentThread(
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
BOOL
|
||||
WSPAPI
|
||||
|
@ -181,9 +181,7 @@ WPUPostMessage(
|
|||
IN WPARAM wParam,
|
||||
IN LPARAM lParam)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
|
||||
return FALSE;
|
||||
return PostMessageW(hWnd, Msg, wParam, lParam);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue