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
95889939
Commit
95889939
authored
Jul 05, 2009
by
Aurimas Fišeras
Committed by
Alexandre Julliard
Jul 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add "Disallowed" to CryptFindLocalizedName.
parent
71f7da2d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
crypt32_En.rc
dlls/crypt32/crypt32_En.rc
+1
-0
cryptres.h
dlls/crypt32/cryptres.h
+1
-0
oid.c
dlls/crypt32/oid.c
+2
-1
No files found.
dlls/crypt32/crypt32_En.rc
View file @
95889939
...
...
@@ -174,6 +174,7 @@ STRINGTABLE DISCARDABLE
IDS_LOCALIZEDNAME_CA "Intermediate Certification Authorities"
IDS_LOCALIZEDNAME_ADDRESSBOOK "Other People"
IDS_LOCALIZEDNAME_TRUSTEDPUBLISHER "Trusted Publishers"
IDS_LOCALIZEDNAME_DISALLOWED "Disallowed"
}
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/cryptres.h
View file @
95889939
...
...
@@ -167,6 +167,7 @@
#define IDS_LOCALIZEDNAME_CA 1143
#define IDS_LOCALIZEDNAME_ADDRESSBOOK 1144
#define IDS_LOCALIZEDNAME_TRUSTEDPUBLISHER 1145
#define IDS_LOCALIZEDNAME_DISALLOWED 1146
#define IDS_KEY_ID 1200
#define IDS_CERT_ISSUER 1201
...
...
dlls/crypt32/oid.c
View file @
95889939
...
...
@@ -82,7 +82,8 @@ static const WCHAR MY[] = {'M','Y',0};
static
const
WCHAR
CA
[]
=
{
'C'
,
'A'
,
0
};
static
const
WCHAR
ADDRESSBOOK
[]
=
{
'A'
,
'D'
,
'D'
,
'R'
,
'E'
,
'S'
,
'S'
,
'B'
,
'O'
,
'O'
,
'K'
,
0
};
static
const
WCHAR
TRUSTEDPUBLISHER
[]
=
{
'T'
,
'r'
,
'u'
,
's'
,
't'
,
'e'
,
'd'
,
'P'
,
'u'
,
'b'
,
'l'
,
'i'
,
's'
,
'h'
,
'e'
,
'r'
,
0
};
static
const
LPCWSTR
LocalizedKeys
[]
=
{
ROOT
,
MY
,
CA
,
ADDRESSBOOK
,
TRUSTEDPUBLISHER
};
static
const
WCHAR
DISALLOWED
[]
=
{
'D'
,
'i'
,
's'
,
'a'
,
'l'
,
'l'
,
'o'
,
'w'
,
'e'
,
'd'
,
0
};
static
const
LPCWSTR
LocalizedKeys
[]
=
{
ROOT
,
MY
,
CA
,
ADDRESSBOOK
,
TRUSTEDPUBLISHER
,
DISALLOWED
};
static
WCHAR
LocalizedNames
[
sizeof
(
LocalizedKeys
)
/
sizeof
(
LocalizedKeys
[
0
])][
256
];
static
void
free_function_sets
(
void
)
...
...
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