Moved thunking functions off to kernel32.dll.
[wine] / dlls / mpr / auth.c
1 /*
2  * MPR Authentication and Logon functions
3  */
4
5 #include "winbase.h"
6 #include "winnetwk.h"
7 #include "debugtools.h"
8
9 DEFAULT_DEBUG_CHANNEL(mpr)
10
11
12 /*****************************************************************
13  *  WNetLogoffA [MPR.89]
14  */
15 DWORD WINAPI WNetLogoffA( LPCSTR lpProvider, HWND hwndOwner )
16 {
17     FIXME( "(%s, %04x): stub\n", debugstr_a(lpProvider), hwndOwner );
18
19     SetLastError(WN_NO_NETWORK);
20     return WN_NO_NETWORK;
21 }
22
23 /*****************************************************************
24  *  WNetLogoffW [MPR.90]
25  */
26 DWORD WINAPI WNetLogoffW( LPCWSTR lpProvider, HWND hwndOwner )
27 {
28     FIXME( "(%s, %04x): stub\n", debugstr_w(lpProvider), hwndOwner );
29
30     SetLastError(WN_NO_NETWORK);
31     return WN_NO_NETWORK;
32 }
33
34 /*****************************************************************
35  *  WNetLogonA [MPR.91]
36  */
37 DWORD WINAPI WNetLogonA( LPCSTR lpProvider, HWND hwndOwner )
38 {
39     FIXME( "(%s, %04x): stub\n", debugstr_a(lpProvider), hwndOwner );
40
41     SetLastError(WN_NO_NETWORK);
42     return WN_NO_NETWORK;
43 }
44
45 /*****************************************************************
46  *  WNetLogonW [MPR.91]
47  */
48 DWORD WINAPI WNetLogonW( LPCWSTR lpProvider, HWND hwndOwner )
49 {
50     FIXME( "(%s, %04x): stub\n", debugstr_w(lpProvider), hwndOwner );
51
52     SetLastError(WN_NO_NETWORK);
53     return WN_NO_NETWORK;
54 }
55
56 /*****************************************************************
57  *  WNetVerifyPasswordA [MPR.91]
58  */
59 DWORD WINAPI WNetVerifyPasswordA( LPCSTR lpszPassword, BOOL *pfMatch )
60 {
61     FIXME( "(%p, %p): stub\n", lpszPassword, pfMatch );
62
63     SetLastError(WN_NO_NETWORK);
64     return WN_NO_NETWORK;
65 }
66
67 /*****************************************************************
68  *  WNetVerifyPasswordW [MPR.91]
69  */
70 DWORD WINAPI WNetVerifyPasswordW( LPCWSTR lpszPassword, BOOL *pfMatch )
71 {
72     FIXME( "(%p, %p): stub\n", lpszPassword, pfMatch );
73
74     SetLastError(WN_NO_NETWORK);
75     return WN_NO_NETWORK;
76 }
77