mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 19:43:31 +08:00
[WINLOGON][MPR][SDK] WNetClearConnections: Fix function parameter type (#3480)
Addendum to 62f79fae93
.
Signed-off-by: Serge Gautherie <reactos-git_serge_171003@gautherie.fr>
This commit is contained in:
parent
5f03339239
commit
0dedb9b474
@ -726,7 +726,7 @@ LogoffShutdownThread(
|
||||
}
|
||||
|
||||
/* Cancel all the user connections */
|
||||
WNetClearConnections(0);
|
||||
WNetClearConnections(NULL);
|
||||
|
||||
if (LSData->Session->UserToken)
|
||||
RevertToSelf();
|
||||
|
@ -55,7 +55,7 @@
|
||||
@ stdcall WNetCancelConnection2W(wstr long long)
|
||||
@ stdcall WNetCancelConnectionA(str long)
|
||||
@ stdcall WNetCancelConnectionW(wstr long)
|
||||
@ stdcall WNetClearConnections(long)
|
||||
@ stdcall WNetClearConnections(ptr)
|
||||
@ stdcall WNetCloseEnum(long)
|
||||
@ stdcall WNetConnectionDialog1A(ptr)
|
||||
@ stdcall WNetConnectionDialog1W(ptr)
|
||||
|
@ -2,6 +2,6 @@
|
||||
#define _UNDOCMPR_H
|
||||
|
||||
/* WNET undocumented functions */
|
||||
DWORD WINAPI WNetClearConnections(HANDLE owner);
|
||||
DWORD WINAPI WNetClearConnections(HWND owner);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user