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
7e388190
Commit
7e388190
authored
Jan 20, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Jan 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add a localized name for the TrustedPublisher store.
parent
f356c8e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
crypt32_En.rc
dlls/crypt32/crypt32_En.rc
+1
-0
cryptres.h
dlls/crypt32/cryptres.h
+1
-0
oid.c
dlls/crypt32/oid.c
+3
-2
No files found.
dlls/crypt32/crypt32_En.rc
View file @
7e388190
...
@@ -171,6 +171,7 @@ STRINGTABLE DISCARDABLE
...
@@ -171,6 +171,7 @@ STRINGTABLE DISCARDABLE
IDS_LOCALIZEDNAME_MY "Personal"
IDS_LOCALIZEDNAME_MY "Personal"
IDS_LOCALIZEDNAME_CA "Intermediate Certification Authorities"
IDS_LOCALIZEDNAME_CA "Intermediate Certification Authorities"
IDS_LOCALIZEDNAME_ADDRESSBOOK "Other People"
IDS_LOCALIZEDNAME_ADDRESSBOOK "Other People"
IDS_LOCALIZEDNAME_TRUSTEDPUBLISHER "Trusted Publishers"
}
}
STRINGTABLE DISCARDABLE
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/cryptres.h
View file @
7e388190
...
@@ -164,6 +164,7 @@
...
@@ -164,6 +164,7 @@
#define IDS_LOCALIZEDNAME_MY 1142
#define IDS_LOCALIZEDNAME_MY 1142
#define IDS_LOCALIZEDNAME_CA 1143
#define IDS_LOCALIZEDNAME_CA 1143
#define IDS_LOCALIZEDNAME_ADDRESSBOOK 1144
#define IDS_LOCALIZEDNAME_ADDRESSBOOK 1144
#define IDS_LOCALIZEDNAME_TRUSTEDPUBLISHER 1145
#define IDS_KEY_ID 1200
#define IDS_KEY_ID 1200
#define IDS_CERT_ISSUER 1201
#define IDS_CERT_ISSUER 1201
...
...
dlls/crypt32/oid.c
View file @
7e388190
...
@@ -81,8 +81,9 @@ static const WCHAR ROOT[] = {'R','O','O','T',0};
...
@@ -81,8 +81,9 @@ static const WCHAR ROOT[] = {'R','O','O','T',0};
static
const
WCHAR
MY
[]
=
{
'M'
,
'Y'
,
0
};
static
const
WCHAR
MY
[]
=
{
'M'
,
'Y'
,
0
};
static
const
WCHAR
CA
[]
=
{
'C'
,
'A'
,
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
ADDRESSBOOK
[]
=
{
'A'
,
'D'
,
'D'
,
'R'
,
'E'
,
'S'
,
'S'
,
'B'
,
'O'
,
'O'
,
'K'
,
0
};
static
const
LPCWSTR
LocalizedKeys
[]
=
{
ROOT
,
MY
,
CA
,
ADDRESSBOOK
};
static
const
WCHAR
TRUSTEDPUBLISHER
[]
=
{
'T'
,
'r'
,
'u'
,
's'
,
't'
,
'e'
,
'd'
,
'P'
,
'u'
,
'b'
,
'l'
,
'i'
,
's'
,
'h'
,
'e'
,
'r'
,
0
};
static
WCHAR
LocalizedNames
[
4
][
256
];
static
const
LPCWSTR
LocalizedKeys
[]
=
{
ROOT
,
MY
,
CA
,
ADDRESSBOOK
,
TRUSTEDPUBLISHER
};
static
WCHAR
LocalizedNames
[
sizeof
(
LocalizedKeys
)
/
sizeof
(
LocalizedKeys
[
0
])][
256
];
static
void
free_function_sets
(
void
)
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