mirror of
https://github.com/reactos/reactos.git
synced 2025-04-28 01:11:35 +00:00
[WINLOGON] Fix build
Add a specific internal header for MPR and include it in WinLogon. CORE-15012
This commit is contained in:
parent
62f79fae93
commit
a06184a9a4
3 changed files with 8 additions and 3 deletions
|
@ -42,6 +42,7 @@
|
||||||
#include <strsafe.h>
|
#include <strsafe.h>
|
||||||
|
|
||||||
#include <reactos/undocuser.h>
|
#include <reactos/undocuser.h>
|
||||||
|
#include <reactos/undocmpr.h>
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
WINAPI
|
WINAPI
|
||||||
|
|
7
sdk/include/reactos/undocmpr.h
Normal file
7
sdk/include/reactos/undocmpr.h
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#ifndef _UNDOCMPR_H
|
||||||
|
#define _UNDOCMPR_H
|
||||||
|
|
||||||
|
/* WNET undocumented functions */
|
||||||
|
DWORD WINAPI WNetClearConnections(HANDLE owner);
|
||||||
|
|
||||||
|
#endif
|
|
@ -378,9 +378,6 @@ BOOL WINAPI RegisterUserApiHook(PUSERAPIHOOKINFO puah);
|
||||||
|
|
||||||
BOOL WINAPI UnregisterUserApiHook(VOID);
|
BOOL WINAPI UnregisterUserApiHook(VOID);
|
||||||
|
|
||||||
/* WNET undocumented functions */
|
|
||||||
DWORD WINAPI WNetClearConnections(DWORD dwUnknown);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} /* extern "C" */
|
} /* extern "C" */
|
||||||
#endif /* defined(__cplusplus) */
|
#endif /* defined(__cplusplus) */
|
||||||
|
|
Loading…
Reference in a new issue