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
63a643e5
Commit
63a643e5
authored
Aug 30, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Authors: James Hawkins <truiken@gmail.com>, Juan Lang <juan_lang@yahoo.com>
Use a standard wine list for packages and providers.
parent
28022e80
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
secur32.c
dlls/secur32/secur32.c
+0
-0
secur32_priv.h
dlls/secur32/secur32_priv.h
+4
-0
main.c
dlls/secur32/tests/main.c
+3
-3
No files found.
dlls/secur32/secur32.c
View file @
63a643e5
This diff is collapsed.
Click to expand it.
dlls/secur32/secur32_priv.h
View file @
63a643e5
...
...
@@ -21,6 +21,8 @@
#ifndef __SECUR32_PRIV_H__
#define __SECUR32_PRIV_H__
#include "wine/list.h"
/* Memory allocation functions for memory accessible by callers of secur32.
* There is no REALLOC, because LocalReAlloc can only work if used in
* conjunction with LMEM_MOVEABLE and LocalLock, but callers aren't using
...
...
@@ -34,6 +36,7 @@
typedef
struct
_SecureProvider
{
struct
list
entry
;
BOOL
loaded
;
PWSTR
moduleName
;
HMODULE
lib
;
...
...
@@ -43,6 +46,7 @@ typedef struct _SecureProvider
typedef
struct
_SecurePackage
{
struct
list
entry
;
SecPkgInfoW
infoW
;
SecureProvider
*
provider
;
}
SecurePackage
;
...
...
dlls/secur32/tests/main.c
View file @
63a643e5
...
...
@@ -218,15 +218,15 @@ static void testEnumerateSecurityPackages(void)
SECURITY_STATUS
sec_status
;
ULONG
num_packages
,
i
;
PSecPkgInfo
pkg_info
=
NULL
;
trace
(
"Running testEnumerateSecurityPackages
\n
"
);
sec_status
=
EnumerateSecurityPackages
(
&
num_packages
,
&
pkg_info
);
ok
(
sec_status
==
SEC_E_OK
,
"EnumerateSecurityPackages() should return %ld, not %
ld
\n
"
,
"EnumerateSecurityPackages() should return %ld, not %
08lx
\n
"
,
(
LONG
)
SEC_E_OK
,
(
LONG
)
sec_status
);
ok
(
num_packages
>
0
,
"Number of sec packages should be > 0 ,but is %ld
\n
"
,
num_packages
);
...
...
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