- Move DDE stuff into its own file.

svn path=/trunk/; revision=65975
This commit is contained in:
James Tabor 2015-01-04 18:12:41 +00:00
parent df529736f3
commit f06c2230de
2 changed files with 55 additions and 0 deletions

View file

@ -106,6 +106,7 @@ list(APPEND SOURCE
user/ntuser/class.c
user/ntuser/clipboard.c
user/ntuser/csr.c
user/ntuser/dde.c
user/ntuser/defwnd.c
user/ntuser/desktop.c
user/ntuser/display.c

View file

@ -0,0 +1,54 @@
#include <win32k.h>
//DBG_DEFAULT_CHANNEL(UserMisc);
BOOL
APIENTRY
NtUserDdeGetQualityOfService(
IN HWND hwndClient,
IN HWND hWndServer,
OUT PSECURITY_QUALITY_OF_SERVICE pqosPrev)
{
STUB
return 0;
}
DWORD
APIENTRY
NtUserDdeInitialize(
DWORD Unknown0,
DWORD Unknown1,
DWORD Unknown2,
DWORD Unknown3,
DWORD Unknown4)
{
STUB
return 0;
}
BOOL
APIENTRY
NtUserDdeSetQualityOfService(
IN HWND hwndClient,
IN PSECURITY_QUALITY_OF_SERVICE pqosNew,
OUT PSECURITY_QUALITY_OF_SERVICE pqosPrev)
{
STUB
return 0;
}
BOOL
APIENTRY
NtUserImpersonateDdeClientWindow(
HWND hWndClient,
HWND hWndServer)
{
STUB
return 0;
}