cryptui: Build language resource files separately.
This commit is contained in:
parent
dca1b517ec
commit
7460c996be
|
@ -10,7 +10,13 @@ IMPORTLIB = cryptui
|
|||
C_SRCS = \
|
||||
main.c
|
||||
|
||||
RC_SRCS = cryptui.rc
|
||||
RC_SRCS = \
|
||||
cryptui.rc \
|
||||
cryptui_De.rc \
|
||||
cryptui_En.rc \
|
||||
cryptui_Fr.rc \
|
||||
cryptui_Ko.rc \
|
||||
cryptui_Nl.rc
|
||||
|
||||
@MAKE_DLL_RULES@
|
||||
|
||||
|
|
|
@ -17,11 +17,6 @@
|
|||
* 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 "commctrl.h"
|
||||
#include "dlgs.h"
|
||||
|
||||
#include "cryptuires.h"
|
||||
|
||||
|
@ -45,9 +40,3 @@ IDB_CERT_WATERMARK BITMAP LOADONCALL DISCARDABLE certwatermark.bmp
|
|||
|
||||
/* @makedep: certheader.bmp */
|
||||
IDB_CERT_HEADER BITMAP LOADONCALL DISCARDABLE certheader.bmp
|
||||
|
||||
#include "cryptui_De.rc"
|
||||
#include "cryptui_En.rc"
|
||||
#include "cryptui_Fr.rc"
|
||||
#include "cryptui_Ko.rc"
|
||||
#include "cryptui_Nl.rc"
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "cryptuires.h"
|
||||
|
||||
#pragma code_page(65001)
|
||||
|
||||
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
|
||||
|
@ -461,5 +463,3 @@ BEGIN
|
|||
LVS_REPORT|LVS_NOCOLUMNHEADER|LVS_SINGLESEL|WS_CHILD|WS_VISIBLE|WS_TABSTOP|WS_BORDER,
|
||||
115,67,174,100
|
||||
END
|
||||
|
||||
#pragma code_page(default)
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "cryptuires.h"
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "cryptuires.h"
|
||||
|
||||
/* UTF-8 */
|
||||
#pragma code_page(65001)
|
||||
|
||||
|
@ -462,5 +464,3 @@ BEGIN
|
|||
LVS_REPORT|LVS_NOCOLUMNHEADER|LVS_SINGLESEL|WS_CHILD|WS_VISIBLE|WS_TABSTOP|WS_BORDER,
|
||||
115,67,174,100
|
||||
END
|
||||
|
||||
#pragma code_page(default)
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "cryptuires.h"
|
||||
|
||||
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
|
||||
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "cryptuires.h"
|
||||
|
||||
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
|
|
|
@ -18,6 +18,10 @@
|
|||
#ifndef __CRYPTUIRES_H_
|
||||
#define __CRYPTUIRES_H_
|
||||
|
||||
#include <windef.h>
|
||||
#include <winuser.h>
|
||||
#include <commctrl.h>
|
||||
|
||||
#define IDS_CERTIFICATE 1000
|
||||
#define IDS_CERTIFICATEINFORMATION 1001
|
||||
#define IDS_CERT_INFO_BAD_SIG 1002
|
||||
|
|
Loading…
Reference in New Issue