Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3289cf1a
Commit
3289cf1a
authored
Mar 05, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpr: Stub implementations of some mpr functions.
parent
cc15fcc4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
74 additions
and
6 deletions
+74
-6
mpr.spec
dlls/mpr/mpr.spec
+6
-6
nps.c
dlls/mpr/nps.c
+68
-0
No files found.
dlls/mpr/mpr.spec
View file @
3289cf1a
...
...
@@ -40,12 +40,12 @@
@ stdcall NPSNotifyRegisterA(long ptr)
@ stdcall NPSSetCustomTextA(str)
@ stdcall NPSSetExtendedErrorA(long str)
@ st
ub PwdChangePasswordA
@ st
ub PwdChangePasswordW
@ st
ub PwdGetPasswordStatusA
@ st
ub PwdGetPasswordStatusW
@ st
ub PwdSetPasswordStatusA
@ st
ub PwdSetPasswordStatusW
@ st
dcall PwdChangePasswordA(str ptr long ptr)
@ st
dcall PwdChangePasswordW(wstr ptr long ptr)
@ st
dcall PwdGetPasswordStatusA(str long ptr)
@ st
dcall PwdGetPasswordStatusW(wstr long ptr)
@ st
dcall PwdSetPasswordStatusA(str long long)
@ st
dcall PwdSetPasswordStatusW(wstr long long)
@ stdcall WNetAddConnection2A(ptr str str long)
@ stdcall WNetAddConnection2W(ptr wstr wstr long)
@ stdcall WNetAddConnection3A(long ptr str str long)
...
...
dlls/mpr/nps.c
View file @
3289cf1a
...
...
@@ -211,3 +211,71 @@ LPVOID WINAPI NPSNotifyGetContextA( NOTIFYCALLBACK pfNotifyCallBack )
FIXME
(
"(%p): stub
\n
"
,
pfNotifyCallBack
);
return
NULL
;
}
/*****************************************************************
* PwdGetPasswordStatusA [MPR.@]
*/
DWORD
WINAPI
PwdGetPasswordStatusA
(
LPCSTR
lpProvider
,
DWORD
dwIndex
,
LPDWORD
status
)
{
FIXME
(
"%s %ld %p
\n
"
,
debugstr_a
(
lpProvider
),
dwIndex
,
status
);
*
status
=
0
;
return
WN_SUCCESS
;
}
/*****************************************************************
* PwdGetPasswordStatusA [MPR.@]
*/
DWORD
WINAPI
PwdGetPasswordStatusW
(
LPCWSTR
lpProvider
,
DWORD
dwIndex
,
LPDWORD
status
)
{
FIXME
(
"%s %ld %p
\n
"
,
debugstr_w
(
lpProvider
),
dwIndex
,
status
);
*
status
=
0
;
return
WN_SUCCESS
;
}
/*****************************************************************
* PwdSetPasswordStatusA [MPR.@]
*/
DWORD
WINAPI
PwdSetPasswordStatusA
(
LPCSTR
lpProvider
,
DWORD
dwIndex
,
DWORD
status
)
{
FIXME
(
"%s %ld %ld
\n
"
,
debugstr_a
(
lpProvider
),
dwIndex
,
status
);
return
WN_SUCCESS
;
}
/*****************************************************************
* PwdSetPasswordStatusW [MPR.@]
*/
DWORD
WINAPI
PwdSetPasswordStatusW
(
LPCWSTR
lpProvider
,
DWORD
dwIndex
,
DWORD
status
)
{
FIXME
(
"%s %ld %ld
\n
"
,
debugstr_w
(
lpProvider
),
dwIndex
,
status
);
return
WN_SUCCESS
;
}
typedef
struct
_CHANGEPWDINFOA
{
LPSTR
lpUsername
;
LPSTR
lpPassword
;
DWORD
cbPassword
;
}
CHANGEPWDINFOA
,
*
LPCHANGEPWDINFOA
;
typedef
struct
_CHANGEPWDINFOW
{
LPWSTR
lpUsername
;
LPWSTR
lpPassword
;
DWORD
cbPassword
;
}
CHANGEPWDINFOW
,
*
LPCHANGEPWDINFOW
;
/*****************************************************************
* PwdChangePasswordA [MPR.@]
*/
DWORD
WINAPI
PwdChangePasswordA
(
LPCSTR
lpProvider
,
HWND
hWnd
,
DWORD
flags
,
LPCHANGEPWDINFOA
info
)
{
FIXME
(
"%s %p %lx %p
\n
"
,
debugstr_a
(
lpProvider
),
hWnd
,
flags
,
info
);
return
WN_SUCCESS
;
}
/*****************************************************************
* PwdChangePasswordA [MPR.@]
*/
DWORD
WINAPI
PwdChangePasswordW
(
LPCWSTR
lpProvider
,
HWND
hWnd
,
DWORD
flags
,
LPCHANGEPWDINFOW
info
)
{
FIXME
(
"%s %p %lx %p
\n
"
,
debugstr_w
(
lpProvider
),
hWnd
,
flags
,
info
);
return
WN_SUCCESS
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment