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
01366a6b
Commit
01366a6b
authored
Jun 30, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Build language resource files separately.
Instead of including them from an other rc file.
parent
fed054a9
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
32 additions
and
42 deletions
+32
-42
Makefile.in
dlls/crypt32/Makefile.in
+11
-1
crypt32.rc
dlls/crypt32/crypt32.rc
+0
-35
crypt32_De.rc
dlls/crypt32/crypt32_De.rc
+2
-2
crypt32_En.rc
dlls/crypt32/crypt32_En.rc
+2
-0
crypt32_Fr.rc
dlls/crypt32/crypt32_Fr.rc
+2
-0
crypt32_Ko.rc
dlls/crypt32/crypt32_Ko.rc
+2
-0
crypt32_Nl.rc
dlls/crypt32/crypt32_Nl.rc
+2
-0
crypt32_No.rc
dlls/crypt32/crypt32_No.rc
+2
-0
crypt32_Pt.rc
dlls/crypt32/crypt32_Pt.rc
+2
-0
crypt32_Ro.rc
dlls/crypt32/crypt32_Ro.rc
+2
-2
crypt32_Sv.rc
dlls/crypt32/crypt32_Sv.rc
+3
-2
cryptres.h
dlls/crypt32/cryptres.h
+2
-0
No files found.
dlls/crypt32/Makefile.in
View file @
01366a6b
...
...
@@ -33,7 +33,17 @@ C_SRCS = \
store.c
\
str.c
RC_SRCS
=
crypt32.rc
RC_SRCS
=
\
crypt32_De.rc
\
crypt32_En.rc
\
crypt32_Fr.rc
\
crypt32_Ko.rc
\
crypt32_Nl.rc
\
crypt32_No.rc
\
crypt32_Pt.rc
\
crypt32_Ro.rc
\
crypt32_Sv.rc
\
version.rc
@MAKE_DLL_RULES@
...
...
dlls/crypt32/crypt32.rc
deleted
100644 → 0
View file @
fed054a9
/*
* crypt32 dll resources
*
* Copyright (C) 2006 Juan Lang
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "cryptres.h"
#include "version.rc"
#include "crypt32_De.rc"
#include "crypt32_En.rc"
#include "crypt32_Fr.rc"
#include "crypt32_Ko.rc"
#include "crypt32_Nl.rc"
#include "crypt32_No.rc"
#include "crypt32_Pt.rc"
#include "crypt32_Ro.rc"
#include "crypt32_Sv.rc"
dlls/crypt32/crypt32_De.rc
View file @
01366a6b
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
#pragma code_page(65001)
...
...
@@ -239,5 +241,3 @@ STRINGTABLE DISCARDABLE
IDS_NETSCAPE_SMIME_CA "S/MIME Zertifikationsautorität"
IDS_NETSCAPE_SIGN_CA "Zertifikationsautorität der Signatur"
}
#pragma code_page(default)
dlls/crypt32/crypt32_En.rc
View file @
01366a6b
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/crypt32_Fr.rc
View file @
01366a6b
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/crypt32_Ko.rc
View file @
01366a6b
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/crypt32_Nl.rc
View file @
01366a6b
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/crypt32_No.rc
View file @
01366a6b
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/crypt32_Pt.rc
View file @
01366a6b
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/crypt32/crypt32_Ro.rc
View file @
01366a6b
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -239,5 +241,3 @@ STRINGTABLE DISCARDABLE
IDS_NETSCAPE_SMIME_CA "S/MIME CA"
IDS_NETSCAPE_SIGN_CA "Semnătură CA"
}
#pragma code_page(default)
dlls/crypt32/crypt32_Sv.rc
View file @
01366a6b
...
...
@@ -17,6 +17,9 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "cryptres.h"
#pragma code_page(65001)
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
...
...
@@ -160,5 +163,3 @@ STRINGTABLE DISCARDABLE
IDS_FILE_RECOVERY "File Recovery"
IDS_ROOT_LIST_SIGNER "Root List Signer"
}
#pragma code_page(default)
dlls/crypt32/cryptres.h
View file @
01366a6b
...
...
@@ -18,6 +18,8 @@
#ifndef __WINE_CRYPTRES_H__
#define __WINE_CRYPTRES_H__
#include <windef.h>
#define IDS_AUTHORITY_KEY_ID 1000
#define IDS_KEY_ATTRIBUTES 1001
#define IDS_KEY_USAGE_RESTRICTION 1002
...
...
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