ReactOS 0.4.15-dev-7918-g2a2556c
auth.c File Reference
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winnetwk.h"
#include "wine/debug.h"
Include dependency graph for auth.c:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (mpr)
 
DWORD WINAPI WNetLogoffA (LPCSTR lpProvider, HWND hwndOwner)
 
DWORD WINAPI WNetLogoffW (LPCWSTR lpProvider, HWND hwndOwner)
 
DWORD WINAPI WNetLogonA (LPCSTR lpProvider, HWND hwndOwner)
 
DWORD WINAPI WNetLogonW (LPCWSTR lpProvider, HWND hwndOwner)
 
DWORD WINAPI WNetVerifyPasswordA (LPCSTR lpszPassword, BOOL *pfMatch)
 
DWORD WINAPI WNetVerifyPasswordW (LPCWSTR lpszPassword, BOOL *pfMatch)
 

Function Documentation

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( mpr  )

◆ WNetLogoffA()

DWORD WINAPI WNetLogoffA ( LPCSTR  lpProvider,
HWND  hwndOwner 
)

Definition at line 34 of file auth.c.

35{
36 FIXME( "(%s, %p): stub\n", debugstr_a(lpProvider), hwndOwner );
37
39 return WN_NO_NETWORK;
40}
#define FIXME(fmt,...)
Definition: debug.h:111
#define SetLastError(x)
Definition: compat.h:752
#define debugstr_a
Definition: kernel32.h:31
#define WN_NO_NETWORK
Definition: winnetwk.h:126

◆ WNetLogoffW()

DWORD WINAPI WNetLogoffW ( LPCWSTR  lpProvider,
HWND  hwndOwner 
)

Definition at line 45 of file auth.c.

46{
47 FIXME( "(%s, %p): stub\n", debugstr_w(lpProvider), hwndOwner );
48
50 return WN_NO_NETWORK;
51}
#define debugstr_w
Definition: kernel32.h:32

◆ WNetLogonA()

DWORD WINAPI WNetLogonA ( LPCSTR  lpProvider,
HWND  hwndOwner 
)

Definition at line 56 of file auth.c.

57{
58 FIXME( "(%s, %p): stub\n", debugstr_a(lpProvider), hwndOwner );
59
61 return WN_NO_NETWORK;
62}

◆ WNetLogonW()

DWORD WINAPI WNetLogonW ( LPCWSTR  lpProvider,
HWND  hwndOwner 
)

Definition at line 67 of file auth.c.

68{
69 FIXME( "(%s, %p): stub\n", debugstr_w(lpProvider), hwndOwner );
70
72 return WN_NO_NETWORK;
73}

◆ WNetVerifyPasswordA()

DWORD WINAPI WNetVerifyPasswordA ( LPCSTR  lpszPassword,
BOOL pfMatch 
)

Definition at line 78 of file auth.c.

79{
80 FIXME( "(%p, %p): stub\n", lpszPassword, pfMatch );
81
83 return WN_NO_NETWORK;
84}
_In_opt_ LPSTR _In_opt_ LPSTR lpszPassword
Definition: winbase.h:2712

◆ WNetVerifyPasswordW()

DWORD WINAPI WNetVerifyPasswordW ( LPCWSTR  lpszPassword,
BOOL pfMatch 
)

Definition at line 89 of file auth.c.

90{
91 FIXME( "(%p, %p): stub\n", lpszPassword, pfMatch );
92
94 return WN_NO_NETWORK;
95}