1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#pragma once
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#ifdef __cplusplus
extern "C" {
#endif
struct LOC_STRING
{
LPWSTR wzId;
LPWSTR wzText;
BOOL bOverridable;
};
const int LOC_CONTROL_NOT_SET = INT_MAX;
struct LOC_CONTROL
{
LPWSTR wzControl;
int nX;
int nY;
int nWidth;
int nHeight;
LPWSTR wzText;
};
const int WIX_LOCALIZATION_LANGUAGE_NOT_SET = INT_MAX;
struct WIX_LOCALIZATION
{
DWORD dwLangId;
DWORD cLocStrings;
LOC_STRING* rgLocStrings;
DWORD cLocControls;
LOC_CONTROL* rgLocControls;
};
/********************************************************************
LocProbeForFile - Searches for a localization file on disk.
*******************************************************************/
HRESULT DAPI LocProbeForFile(
__in_z LPCWSTR wzBasePath,
__in_z LPCWSTR wzLocFileName,
__in_z_opt LPCWSTR wzLanguage,
__deref_out_z LPWSTR* psczPath
);
/********************************************************************
LocLoadFromFile - Loads a localization file
*******************************************************************/
HRESULT DAPI LocLoadFromFile(
__in_z LPCWSTR wzWxlFile,
__out WIX_LOCALIZATION** ppWixLoc
);
/********************************************************************
LocLoadFromResource - loads a localization file from a module's data
resource.
NOTE: The resource data must be UTF-8 encoded.
*******************************************************************/
HRESULT DAPI LocLoadFromResource(
__in HMODULE hModule,
__in_z LPCSTR szResource,
__out WIX_LOCALIZATION** ppWixLoc
);
/********************************************************************
LocFree - free memory allocated when loading a localization file
*******************************************************************/
void DAPI LocFree(
__in_opt WIX_LOCALIZATION* pWixLoc
);
/********************************************************************
LocLocalizeString - replace any #(loc.id) in a string with the
correct sub string
*******************************************************************/
HRESULT DAPI LocLocalizeString(
__in const WIX_LOCALIZATION* pWixLoc,
__deref_out_z LPWSTR* psczInput
);
/********************************************************************
LocGetControl - returns a control's localization information
*******************************************************************/
HRESULT DAPI LocGetControl(
__in const WIX_LOCALIZATION* pWixLoc,
__in_z LPCWSTR wzId,
__out LOC_CONTROL** ppLocControl
);
/********************************************************************
LocGetString - returns a string's localization information
*******************************************************************/
extern "C" HRESULT DAPI LocGetString(
__in const WIX_LOCALIZATION* pWixLoc,
__in_z LPCWSTR wzId,
__out LOC_STRING** ppLocString
);
/********************************************************************
LocAddString - adds a localization string
*******************************************************************/
extern "C" HRESULT DAPI LocAddString(
__in WIX_LOCALIZATION* pWixLoc,
__in_z LPCWSTR wzId,
__in_z LPCWSTR wzLocString,
__in BOOL bOverridable
);
#ifdef __cplusplus
}
#endif
|