mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
winefile: Constify some character strings.
This commit is contained in:
parent
5730f6cf98
commit
8d8a4c103a
1 changed files with 4 additions and 4 deletions
|
@ -1757,11 +1757,11 @@ static void PropDlg_DisplayValue(HWND hlbox, HWND hedit)
|
|||
|
||||
static void CheckForFileInfo(struct PropertiesDialog* dlg, HWND hwnd, LPCWSTR strFilename)
|
||||
{
|
||||
static WCHAR sBackSlash[] = {'\\','\0'};
|
||||
static WCHAR sTranslation[] = {'\\','V','a','r','F','i','l','e','I','n','f','o','\\','T','r','a','n','s','l','a','t','i','o','n','\0'};
|
||||
static WCHAR sStringFileInfo[] = {'\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o','\\',
|
||||
static const WCHAR sBackSlash[] = {'\\','\0'};
|
||||
static const WCHAR sTranslation[] = {'\\','V','a','r','F','i','l','e','I','n','f','o','\\','T','r','a','n','s','l','a','t','i','o','n','\0'};
|
||||
static const WCHAR sStringFileInfo[] = {'\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o','\\',
|
||||
'%','0','4','x','%','0','4','x','\\','%','s','\0'};
|
||||
static WCHAR sFmt[] = {'%','d','.','%','d','.','%','d','.','%','d','\0'};
|
||||
static const WCHAR sFmt[] = {'%','d','.','%','d','.','%','d','.','%','d','\0'};
|
||||
DWORD dwVersionDataLen = GetFileVersionInfoSizeW(strFilename, NULL);
|
||||
|
||||
if (dwVersionDataLen) {
|
||||
|
|
Loading…
Reference in a new issue