ReactOS 0.4.15-dev-6644-g539123c
RegLoadMUIString.c File Reference
#include "advapi32_vista.h"
#include <winuser.h>
#include <wine/debug.h>
#include <wine/unicode.h>
Include dependency graph for RegLoadMUIString.c:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (reg)
 
static int load_string (HINSTANCE hModule, UINT resId, LPWSTR pwszBuffer, INT cMaxChars)
 
LONG WINAPI RegLoadMUIStringW (IN HKEY hKey, IN LPCWSTR pszValue OPTIONAL, OUT LPWSTR pszOutBuf, IN DWORD cbOutBuf, OUT LPDWORD pcbData OPTIONAL, IN DWORD Flags, IN LPCWSTR pszDirectory OPTIONAL)
 
LONG WINAPI RegLoadMUIStringA (IN HKEY hKey, IN LPCSTR pszValue OPTIONAL, OUT LPSTR pszOutBuf, IN DWORD cbOutBuf, OUT LPDWORD pcbData OPTIONAL, IN DWORD Flags, IN LPCSTR pszDirectory OPTIONAL)
 

Function Documentation

◆ load_string()

static int load_string ( HINSTANCE  hModule,
UINT  resId,
LPWSTR  pwszBuffer,
INT  cMaxChars 
)
static

Definition at line 16 of file RegLoadMUIString.c.

17{
19 HRSRC hResource;
21 int idxString;
22
23 /* Negative values have to be inverted. */
24 if (HIWORD(resId) == 0xffff)
25 resId = (UINT)(-((INT)resId));
26
27 /* Load the resource into memory and get a pointer to it. */
28 hResource = FindResourceW(hModule, MAKEINTRESOURCEW(LOWORD(resId >> 4) + 1), (LPWSTR)RT_STRING);
29 if (!hResource) return 0;
30 hMemory = LoadResource(hModule, hResource);
31 if (!hMemory) return 0;
33
34 /* Strings are length-prefixed. Lowest nibble of resId is an index. */
35 idxString = resId & 0xf;
36 while (idxString--) pString += *pString + 1;
37
38 /* If no buffer is given, return length of the string. */
39 if (!pwszBuffer) return *pString;
40
41 /* Else copy over the string, respecting the buffer size. */
42 cMaxChars = (*pString < cMaxChars) ? *pString : (cMaxChars - 1);
43 if (cMaxChars >= 0)
44 {
45 memcpy(pwszBuffer, pString+1, cMaxChars * sizeof(WCHAR));
46 pwszBuffer[cMaxChars] = L'\0';
47 }
48
49 return cMaxChars;
50}
HMODULE hModule
Definition: animate.c:44
HRSRC WINAPI FindResourceW(HINSTANCE hModule, LPCWSTR name, LPCWSTR type)
Definition: res.c:176
LPVOID WINAPI LockResource(HGLOBAL handle)
Definition: res.c:550
HGLOBAL WINAPI LoadResource(HINSTANCE hModule, HRSRC hRsrc)
Definition: res.c:532
FxString * pString
WDFMEMORY hMemory
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
unsigned int UINT
Definition: ndis.h:50
#define L(x)
Definition: ntvdm.h:50
#define LOWORD(l)
Definition: pedump.c:82
#define RT_STRING
Definition: pedump.c:368
int32_t INT
Definition: typedefs.h:58
#define HIWORD(l)
Definition: typedefs.h:247
#define MAKEINTRESOURCEW(i)
Definition: winuser.h:582
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184

Referenced by RegLoadMUIStringW().

◆ RegLoadMUIStringA()

LONG WINAPI RegLoadMUIStringA ( IN HKEY  hKey,
IN LPCSTR pszValue  OPTIONAL,
OUT LPSTR  pszOutBuf,
IN DWORD  cbOutBuf,
OUT LPDWORD pcbData  OPTIONAL,
IN DWORD  Flags,
IN LPCSTR pszDirectory  OPTIONAL 
)

Definition at line 157 of file RegLoadMUIString.c.

164{
165 UNICODE_STRING valueW, baseDirW;
166 WCHAR *pwszBuffer;
167 DWORD cbData = cbOutBuf * sizeof(WCHAR);
168 LONG result;
169
170 valueW.Buffer = baseDirW.Buffer = pwszBuffer = NULL;
171 if (!RtlCreateUnicodeStringFromAsciiz(&valueW, pszValue) ||
172 !RtlCreateUnicodeStringFromAsciiz(&baseDirW, pszDirectory) ||
173 !(pwszBuffer = HeapAlloc(GetProcessHeap(), 0, cbData)))
174 {
176 goto cleanup;
177 }
178
179 result = RegLoadMUIStringW(hKey, valueW.Buffer, pwszBuffer, cbData, NULL, Flags,
180 baseDirW.Buffer);
181
182 if (result == ERROR_SUCCESS)
183 {
184 cbData = WideCharToMultiByte(CP_ACP, 0, pwszBuffer, -1, pszOutBuf, cbOutBuf, NULL, NULL);
185 if (pcbData)
186 *pcbData = cbData;
187 }
188
189cleanup:
190 HeapFree(GetProcessHeap(), 0, pwszBuffer);
191 RtlFreeUnicodeString(&baseDirW);
193
194 return result;
195}
LONG WINAPI RegLoadMUIStringW(IN HKEY hKey, IN LPCWSTR pszValue OPTIONAL, OUT LPWSTR pszOutBuf, IN DWORD cbOutBuf, OUT LPDWORD pcbData OPTIONAL, IN DWORD Flags, IN LPCWSTR pszDirectory OPTIONAL)
#define ERROR_NOT_ENOUGH_MEMORY
Definition: dderror.h:7
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define GetProcessHeap()
Definition: compat.h:736
#define CP_ACP
Definition: compat.h:109
#define HeapAlloc
Definition: compat.h:733
#define HeapFree(x, y, z)
Definition: compat.h:735
#define WideCharToMultiByte
Definition: compat.h:111
static void cleanup(void)
Definition: main.c:1335
static const WCHAR valueW[]
Definition: object.c:48
unsigned long DWORD
Definition: ntddk_ex.h:95
FxAutoRegKey hKey
GLuint64EXT * result
Definition: glext.h:11304
NTSYSAPI BOOLEAN NTAPI RtlCreateUnicodeStringFromAsciiz(_Out_ PUNICODE_STRING Destination, _In_ PCSZ Source)
NTSYSAPI VOID NTAPI RtlFreeUnicodeString(PUNICODE_STRING UnicodeString)
long LONG
Definition: pedump.c:60
_In_ DWORD _Out_writes_bytes_to_opt_ pcbData void _Inout_ DWORD * pcbData
Definition: wincrypt.h:4950
_Must_inspect_result_ _In_ ULONG Flags
Definition: wsk.h:170

Referenced by CRegFolder::GetDetailsOf(), HCR_GetClassNameA(), and HCR_MapTypeToValueA().

◆ RegLoadMUIStringW()

LONG WINAPI RegLoadMUIStringW ( IN HKEY  hKey,
IN LPCWSTR pszValue  OPTIONAL,
OUT LPWSTR  pszOutBuf,
IN DWORD  cbOutBuf,
OUT LPDWORD pcbData  OPTIONAL,
IN DWORD  Flags,
IN LPCWSTR pszDirectory  OPTIONAL 
)

Definition at line 58 of file RegLoadMUIString.c.

65{
66 DWORD dwValueType, cbData;
67 LPWSTR pwszTempBuffer = NULL, pwszExpandedBuffer = NULL;
69
70 /* Parameter sanity checks. */
71 if (!hKey || !pszOutBuf)
73
74 if (pszDirectory && *pszDirectory)
75 {
76 FIXME("BaseDir parameter not yet supported!\n");
78 }
79
80 /* Check for value existence and correctness of it's type, allocate a buffer and load it. */
81 result = RegQueryValueExW(hKey, pszValue, NULL, &dwValueType, NULL, &cbData);
82 if (result != ERROR_SUCCESS) goto cleanup;
83 if (!(dwValueType == REG_SZ || dwValueType == REG_EXPAND_SZ) || !cbData)
84 {
86 goto cleanup;
87 }
88 pwszTempBuffer = HeapAlloc(GetProcessHeap(), 0, cbData);
89 if (!pwszTempBuffer)
90 {
92 goto cleanup;
93 }
94 result = RegQueryValueExW(hKey, pszValue, NULL, &dwValueType, (LPBYTE)pwszTempBuffer, &cbData);
95 if (result != ERROR_SUCCESS) goto cleanup;
96
97 /* Expand environment variables, if appropriate, or copy the original string over. */
98 if (dwValueType == REG_EXPAND_SZ)
99 {
100 cbData = ExpandEnvironmentStringsW(pwszTempBuffer, NULL, 0) * sizeof(WCHAR);
101 if (!cbData) goto cleanup;
102 pwszExpandedBuffer = HeapAlloc(GetProcessHeap(), 0, cbData);
103 if (!pwszExpandedBuffer)
104 {
106 goto cleanup;
107 }
108 ExpandEnvironmentStringsW(pwszTempBuffer, pwszExpandedBuffer, cbData);
109 }
110 else
111 {
112 pwszExpandedBuffer = HeapAlloc(GetProcessHeap(), 0, cbData);
113 memcpy(pwszExpandedBuffer, pwszTempBuffer, cbData);
114 }
115
116 /* If the value references a resource based string, parse the value and load the string.
117 * Else just copy over the original value. */
119 if (*pwszExpandedBuffer != L'@') /* '@' is the prefix for resource based string entries. */
120 {
121 lstrcpynW(pszOutBuf, pwszExpandedBuffer, cbOutBuf / sizeof(WCHAR));
122 }
123 else
124 {
125 WCHAR *pComma = wcsrchr(pwszExpandedBuffer, L',');
126 UINT uiStringId;
128
129 /* Format of the expanded value is 'path_to_dll,-resId' */
130 if (!pComma || pComma[1] != L'-')
131 {
133 goto cleanup;
134 }
135
136 uiStringId = _wtoi(pComma+2);
137 *pComma = L'\0';
138
139 hModule = LoadLibraryExW(pwszExpandedBuffer + 1, NULL, LOAD_LIBRARY_AS_DATAFILE);
140 if (!hModule || !load_string(hModule, uiStringId, pszOutBuf, cbOutBuf / sizeof(WCHAR)))
143 }
144
145cleanup:
146 HeapFree(GetProcessHeap(), 0, pwszTempBuffer);
147 HeapFree(GetProcessHeap(), 0, pwszExpandedBuffer);
148 return result;
149}
static int load_string(HINSTANCE hModule, UINT resId, LPWSTR pwszBuffer, INT cMaxChars)
#define FIXME(fmt,...)
Definition: debug.h:111
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4118
#define ERROR_INVALID_PARAMETER
Definition: compat.h:101
#define wcsrchr
Definition: compat.h:16
#define FreeLibrary(x)
Definition: compat.h:748
#define lstrcpynW
Definition: compat.h:738
DWORD WINAPI ExpandEnvironmentStringsW(IN LPCWSTR lpSrc, IN LPWSTR lpDst, IN DWORD nSize)
Definition: environ.c:519
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryExW(LPCWSTR lpLibFileName, HANDLE hFile, DWORD dwFlags)
Definition: loader.c:288
_Check_return_ _CRTIMP int __cdecl _wtoi(_In_z_ const wchar_t *_Str)
#define REG_SZ
Definition: layer.c:22
#define ERROR_FILE_NOT_FOUND
Definition: disk.h:79
#define REG_EXPAND_SZ
Definition: nt_native.h:1494
unsigned char * LPBYTE
Definition: typedefs.h:53
#define LOAD_LIBRARY_AS_DATAFILE
Definition: winbase.h:342
#define ERROR_BADKEY
Definition: winerror.h:589

Referenced by RegLoadMUIStringA().

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( reg  )