#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "netspi.h"
#include "wine/debug.h"
#include "winerror.h"
#include "mprres.h"
Go to the source code of this file.
|
| WINE_DEFAULT_DEBUG_CHANNEL (mpr) |
|
static INT_PTR WINAPI | NPS_ProxyPasswordDialog (HWND hdlg, UINT uMsg, WPARAM wParam, LPARAM lParam) |
|
DWORD WINAPI | NPSAuthenticationDialogA (LPAUTHDLGSTRUCTA lpAuthDlgStruct) |
|
DWORD WINAPI | NPSGetProviderHandleA (PHPROVIDER phProvider) |
|
DWORD WINAPI | NPSGetProviderNameA (HPROVIDER hProvider, LPCSTR *lpszProviderName) |
|
DWORD WINAPI | NPSGetSectionNameA (HPROVIDER hProvider, LPCSTR *lpszSectionName) |
|
DWORD WINAPI | NPSSetExtendedErrorA (DWORD NetSpecificError, LPSTR lpExtendedErrorText) |
|
VOID WINAPI | NPSSetCustomTextA (LPSTR lpCustomErrorText) |
|
DWORD WINAPI | NPSCopyStringA (LPCSTR lpString, LPVOID lpBuffer, LPDWORD lpdwBufferSize) |
|
DWORD WINAPI | NPSDeviceGetNumberA (LPSTR lpLocalName, LPDWORD lpdwNumber, LPDWORD lpdwType) |
|
DWORD WINAPI | NPSDeviceGetStringA (DWORD dwNumber, DWORD dwType, LPSTR lpLocalName, LPDWORD lpdwBufferSize) |
|
DWORD WINAPI | NPSNotifyRegisterA (enum NOTIFYTYPE NotifyType, NOTIFYCALLBACK pfNotifyCallBack) |
|
LPVOID WINAPI | NPSNotifyGetContextA (NOTIFYCALLBACK pfNotifyCallBack) |
|
DWORD WINAPI | PwdGetPasswordStatusA (LPCSTR lpProvider, DWORD dwIndex, LPDWORD status) |
|
DWORD WINAPI | PwdGetPasswordStatusW (LPCWSTR lpProvider, DWORD dwIndex, LPDWORD status) |
|
DWORD WINAPI | PwdSetPasswordStatusA (LPCSTR lpProvider, DWORD dwIndex, DWORD status) |
|
DWORD WINAPI | PwdSetPasswordStatusW (LPCWSTR lpProvider, DWORD dwIndex, DWORD status) |
|
DWORD WINAPI | PwdChangePasswordA (LPCSTR lpProvider, HWND hWnd, DWORD flags, LPCHANGEPWDINFOA info) |
|
DWORD WINAPI | PwdChangePasswordW (LPCWSTR lpProvider, HWND hWnd, DWORD flags, LPCHANGEPWDINFOW info) |
|
◆ CHANGEPWDINFOA
◆ CHANGEPWDINFOW
◆ LPCHANGEPWDINFOA
◆ LPCHANGEPWDINFOW
◆ NPS_ProxyPasswordDialog()
Definition at line 39 of file nps.c.
41{
44
46 {
48
49
52
54 {
57 }
58
59
61 {
64 }
65
67 }
68
70
71 switch( uMsg )
72 {
75 {
77 if( hitem )
79
81 if( hitem )
83
86 }
88 {
91 }
92 break;
93 }
95}
struct AUTHDLGSTRUCTA * LPAUTHDLGSTRUCTA
int WINAPI GetWindowTextA(HWND hWnd, LPSTR lpString, int nMaxCount)
BOOL WINAPI SetWindowTextA(_In_ HWND, _In_opt_ LPCSTR)
#define GetWindowLongPtrW
HWND WINAPI GetDlgItem(_In_opt_ HWND, _In_ int)
#define SetWindowLongPtrW
BOOL WINAPI EndDialog(_In_ HWND, _In_ INT_PTR)
Referenced by NPSAuthenticationDialogA().
◆ NPSAuthenticationDialogA()
Definition at line 100 of file nps.c.
101{
103
104 TRACE(
"%p\n", lpAuthDlgStruct);
105
106 if( !lpAuthDlgStruct )
108 if( lpAuthDlgStruct->
cbStructure <
sizeof *lpAuthDlgStruct )
110
113
116 (
LPARAM) lpAuthDlgStruct );
117}
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR lpModuleName)
static INT_PTR WINAPI NPS_ProxyPasswordDialog(HWND hdlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
#define MAKEINTRESOURCEW(i)
INT_PTR WINAPI DialogBoxParamW(_In_opt_ HINSTANCE, _In_ LPCWSTR, _In_opt_ HWND, _In_opt_ DLGPROC, _In_ LPARAM)
◆ NPSCopyStringA()
Definition at line 166 of file nps.c.
167{
170}
static TAGREF LPCWSTR LPDWORD LPVOID lpBuffer
◆ NPSDeviceGetNumberA()
Definition at line 175 of file nps.c.
176{
177 FIXME(
"(%s, %p, %p): stub\n",
debugstr_a(lpLocalName), lpdwNumber, lpdwType );
179}
◆ NPSDeviceGetStringA()
Definition at line 184 of file nps.c.
185{
186 FIXME(
"(%d, %d, %p, %p): stub\n", dwNumber, dwType, lpLocalName, lpdwBufferSize );
188}
◆ NPSGetProviderHandleA()
Definition at line 122 of file nps.c.
123{
124 FIXME(
"(%p): stub\n", phProvider );
126}
◆ NPSGetProviderNameA()
◆ NPSGetSectionNameA()
◆ NPSNotifyGetContextA()
Definition at line 202 of file nps.c.
203{
204 FIXME(
"(%p): stub\n", pfNotifyCallBack );
206}
◆ NPSNotifyRegisterA()
Definition at line 193 of file nps.c.
194{
195 FIXME(
"(%d, %p): stub\n", NotifyType, pfNotifyCallBack );
197}
◆ NPSSetCustomTextA()
◆ NPSSetExtendedErrorA()
Definition at line 149 of file nps.c.
150{
151 FIXME(
"(%08x, %s): stub\n", NetSpecificError,
debugstr_a(lpExtendedErrorText) );
153}
◆ PwdChangePasswordA()
◆ PwdChangePasswordW()
◆ PwdGetPasswordStatusA()
◆ PwdGetPasswordStatusW()
◆ PwdSetPasswordStatusA()
◆ PwdSetPasswordStatusW()
◆ WINE_DEFAULT_DEBUG_CHANNEL()
WINE_DEFAULT_DEBUG_CHANNEL |
( |
mpr |
| ) |
|