Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e2020e1b
Commit
e2020e1b
authored
Jan 23, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub implementations of some crypto functions used by IE6 install.
parent
3f0a473f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
crypt32.spec
dlls/crypt32/crypt32.spec
+2
-2
main.c
dlls/crypt32/main.c
+12
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
e2020e1b
...
@@ -175,10 +175,10 @@
...
@@ -175,10 +175,10 @@
@ stdcall I_CryptFreeTls(long long)
@ stdcall I_CryptFreeTls(long long)
@ stub I_CryptGetDefaultCryptProv
@ stub I_CryptGetDefaultCryptProv
@ stub I_CryptGetDefaultCryptProvForEncrypt
@ stub I_CryptGetDefaultCryptProvForEncrypt
@ st
ub I_CryptGetOssGlobal
@ st
dcall I_CryptGetOssGlobal(long)
@ stdcall I_CryptGetTls(long)
@ stdcall I_CryptGetTls(long)
@ stub I_CryptInsertLruEntry
@ stub I_CryptInsertLruEntry
@ st
ub I_CryptInstallOssGlobal
@ st
dcall I_CryptInstallOssGlobal(long long long)
@ stub I_CryptReleaseLruEntry
@ stub I_CryptReleaseLruEntry
@ stdcall I_CryptSetTls(long ptr)
@ stdcall I_CryptSetTls(long ptr)
@ stub I_CryptUninstallOssGlobal
@ stub I_CryptUninstallOssGlobal
...
...
dlls/crypt32/main.c
View file @
e2020e1b
...
@@ -352,3 +352,15 @@ BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
...
@@ -352,3 +352,15 @@ BOOL WINAPI I_CryptFreeTls(DWORD dwTlsIndex, DWORD unknown)
TRACE
(
"(%ld, %ld)
\n
"
,
dwTlsIndex
,
unknown
);
TRACE
(
"(%ld, %ld)
\n
"
,
dwTlsIndex
,
unknown
);
return
TlsFree
(
dwTlsIndex
);
return
TlsFree
(
dwTlsIndex
);
}
}
BOOL
WINAPI
I_CryptGetOssGlobal
(
DWORD
x
)
{
FIXME
(
"%08lx
\n
"
,
x
);
return
FALSE
;
}
BOOL
WINAPI
I_CryptInstallOssGlobal
(
DWORD
x
,
DWORD
y
,
DWORD
z
)
{
FIXME
(
"%08lx %08lx %08lx
\n
"
,
x
,
y
,
z
);
return
FALSE
;
}
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