[SYSSETUP] - Formatting. No code changes.

svn path=/trunk/; revision=54383
This commit is contained in:
Rafal Harabien 2011-11-15 08:44:37 +00:00
parent 7407aba5cf
commit 226db13685
3 changed files with 1670 additions and 1670 deletions

View file

@ -17,7 +17,7 @@
#define VMWINST
#define PM_REGISTRATION_NOTIFY (WM_APP + 1)
/* Private Message used to communicate progress from the background
/* Private Message used to communicate progress from the background
registration thread to the main thread.
wParam = 0 Registration in progress
= 1 Registration completed
@ -871,7 +871,7 @@ WriteUserLocale(VOID)
0, NULL, REG_OPTION_NON_VOLATILE,
KEY_WRITE, NULL, &hKey, NULL) == ERROR_SUCCESS)
{
RegSetValueExW(hKey, L"Locale", 0, REG_SZ, (LPBYTE)Locale, (wcslen(Locale)+1) * sizeof(WCHAR));
RegSetValueExW(hKey, L"Locale", 0, REG_SZ, (LPBYTE)Locale, (wcslen(Locale) + 1) * sizeof(WCHAR));
RegCloseKey(hKey);
}
}
@ -2127,7 +2127,7 @@ ProcessUnattendInf(HINF hUnattendedInf)
DPRINT1("Error: SetupGetStringField failed with %d\n", GetLastError());
return FALSE;
}
DPRINT1("Name %S Value %S\n",szName, szValue);
DPRINT1("Name %S Value %S\n", szName, szValue);
if (!wcscmp(szName, L"FullName"))
{
if ((sizeof(SetupData.OwnerName) / sizeof(TCHAR)) > LineLength)
@ -2213,13 +2213,13 @@ ProcessUnattendInf(HINF hUnattendedInf)
0,
REG_SZ,
(const BYTE*)szPath,
(wcslen(szPath)+1) * sizeof(WCHAR)) == ERROR_SUCCESS)
(wcslen(szPath) + 1) * sizeof(WCHAR)) == ERROR_SUCCESS)
{
i++;
}
}
}
}while(SetupFindNextLine(&InfContext, &InfContext));
} while(SetupFindNextLine(&InfContext, &InfContext));
}
RegCloseKey(hKey);