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
61942c8d
Commit
61942c8d
authored
Jan 05, 2016
by
Austin English
Committed by
Alexandre Julliard
Jan 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rasapi32: Add RasSetCustomAuthDataA/W stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
591f6322
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
rasapi.c
dlls/rasapi32/rasapi.c
+12
-0
rasapi32.spec
dlls/rasapi32/rasapi32.spec
+2
-0
ras.h
include/ras.h
+3
-0
No files found.
dlls/rasapi32/rasapi.c
View file @
61942c8d
...
...
@@ -494,6 +494,18 @@ DWORD WINAPI RasRenameEntryW(LPCWSTR lpszPhonebook, LPCWSTR lpszOldEntry, LPCWST
return
0
;
}
DWORD
WINAPI
RasSetCustomAuthDataA
(
const
char
*
phonebook
,
const
char
*
entry
,
BYTE
*
authdata
,
DWORD
size
)
{
FIXME
(
"(%s,%s,%p,0x%08x), stub!
\n
"
,
debugstr_a
(
phonebook
),
debugstr_a
(
entry
),
authdata
,
size
);
return
0
;
}
DWORD
WINAPI
RasSetCustomAuthDataW
(
const
WCHAR
*
phonebook
,
const
WCHAR
*
entry
,
BYTE
*
authdata
,
DWORD
size
)
{
FIXME
(
"(%s,%s,%p,0x%08x), stub!
\n
"
,
debugstr_w
(
phonebook
),
debugstr_w
(
entry
),
authdata
,
size
);
return
0
;
}
DWORD
WINAPI
RasSetEntryDialParamsA
(
LPCSTR
lpszPhonebook
,
LPRASDIALPARAMSA
lprasdialparams
,
BOOL
fRemovePassword
)
{
...
...
dlls/rasapi32/rasapi32.spec
View file @
61942c8d
...
...
@@ -64,6 +64,8 @@
@ stdcall RasSetAutodialParamW(long ptr long)
@ stub RasSetCredentialsA
@ stub RasSetCredentialsW
@ stdcall RasSetCustomAuthDataA(str str ptr long)
@ stdcall RasSetCustomAuthDataW(wstr wstr ptr long)
@ stdcall RasSetEntryDialParamsA(str ptr long)
@ stdcall RasSetEntryDialParamsW(wstr ptr long)
@ stdcall RasSetEntryPropertiesA(str str ptr long ptr long)
...
...
include/ras.h
View file @
61942c8d
...
...
@@ -493,6 +493,9 @@ DWORD WINAPI RasSetAutodialAddressW(LPCWSTR,DWORD,LPRASAUTODIALENTRYW,DWORD,DWOR
DWORD
WINAPI
RasSetAutodialParamA
(
DWORD
,
LPVOID
,
DWORD
);
DWORD
WINAPI
RasSetAutodialParamW
(
DWORD
,
LPVOID
,
DWORD
);
#define RasSetAutodialParam WINELIB_NAME_AW(RasSetAutodialParam)
DWORD
WINAPI
RasSetCustomAuthDataA
(
const
CHAR
*
,
const
CHAR
*
,
BYTE
*
,
DWORD
);
DWORD
WINAPI
RasSetCustomAuthDataW
(
const
WCHAR
*
,
const
WCHAR
*
,
BYTE
*
,
DWORD
);
#define RasSetCustomAuthData WINELIB_NAME_AW(RasSetCustomAuthData)
DWORD
WINAPI
RasSetEntryDialParamsA
(
LPCSTR
,
LPRASDIALPARAMSA
,
BOOL
);
DWORD
WINAPI
RasSetEntryDialParamsW
(
LPCWSTR
,
LPRASDIALPARAMSW
,
BOOL
);
#define RasSetEntryDialParams WINELIB_NAME_AW(RasSetEntryDialParams)
...
...
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