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
4fd3f409
Commit
4fd3f409
authored
Aug 17, 2005
by
Kai Blin
Committed by
Alexandre Julliard
Aug 17, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add NTLM security provider dummy.
parent
7f3c43b5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
0 deletions
+3
-0
Makefile.in
dlls/secur32/Makefile.in
+1
-0
ntlm.c
dlls/secur32/ntlm.c
+0
-0
secur32.c
dlls/secur32/secur32.c
+1
-0
secur32_priv.h
dlls/secur32/secur32_priv.h
+1
-0
No files found.
dlls/secur32/Makefile.in
View file @
4fd3f409
...
@@ -8,6 +8,7 @@ IMPORTS = user32 advapi32 kernel32 ntdll
...
@@ -8,6 +8,7 @@ IMPORTS = user32 advapi32 kernel32 ntdll
C_SRCS
=
\
C_SRCS
=
\
negotiate.c
\
negotiate.c
\
ntlm.c
\
schannel.c
\
schannel.c
\
secur32.c
\
secur32.c
\
thunks.c
\
thunks.c
\
...
...
dlls/secur32/ntlm.c
0 → 100644
View file @
4fd3f409
This diff is collapsed.
Click to expand it.
dlls/secur32/secur32.c
View file @
4fd3f409
...
@@ -611,6 +611,7 @@ static void SECUR32_initializeProviders(void)
...
@@ -611,6 +611,7 @@ static void SECUR32_initializeProviders(void)
/* First load built-in providers */
/* First load built-in providers */
SECUR32_initSchannelSP
();
SECUR32_initSchannelSP
();
SECUR32_initNegotiateSP
();
SECUR32_initNegotiateSP
();
SECUR32_initNTLMSP
();
/* Now load providers from registry */
/* Now load providers from registry */
apiRet
=
RegOpenKeyExW
(
HKEY_LOCAL_MACHINE
,
securityProvidersKeyW
,
0
,
apiRet
=
RegOpenKeyExW
(
HKEY_LOCAL_MACHINE
,
securityProvidersKeyW
,
0
,
KEY_READ
,
&
key
);
KEY_READ
,
&
key
);
...
...
dlls/secur32/secur32_priv.h
View file @
4fd3f409
...
@@ -80,5 +80,6 @@ PSTR SECUR32_AllocMultiByteFromWide(PCWSTR str);
...
@@ -80,5 +80,6 @@ PSTR SECUR32_AllocMultiByteFromWide(PCWSTR str);
/* Initialization functions for built-in providers */
/* Initialization functions for built-in providers */
void
SECUR32_initSchannelSP
(
void
);
void
SECUR32_initSchannelSP
(
void
);
void
SECUR32_initNegotiateSP
(
void
);
void
SECUR32_initNegotiateSP
(
void
);
void
SECUR32_initNTLMSP
(
void
);
#endif
/* ndef __SECUR32_PRIV_H__ */
#endif
/* ndef __SECUR32_PRIV_H__ */
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