mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[SPELLING]
- Fix some typos that say "lastest." Patch by Sergei Antonov svn path=/trunk/; revision=61857
This commit is contained in:
parent
13083f4d74
commit
d237b22458
5 changed files with 9 additions and 9 deletions
|
@ -276,7 +276,7 @@ static VOID Usage( LPTSTR ProgramName )
|
|||
WCHAR szFormatW[MAX_PATH];
|
||||
DWORD Index = 0;
|
||||
BYTE dummy;
|
||||
BOOLEAN lastestVersion;
|
||||
BOOLEAN latestVersion;
|
||||
|
||||
LoadStringAndOem( GetModuleHandle(NULL), STRING_HELP, (LPTSTR) szMsg,RC_STRING_MAX_SIZE);
|
||||
if (!LoadFMIFSEntryPoints())
|
||||
|
@ -286,9 +286,9 @@ static VOID Usage( LPTSTR ProgramName )
|
|||
}
|
||||
|
||||
szFormats[0] = 0;
|
||||
while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy, &dummy, &lastestVersion))
|
||||
while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy, &dummy, &latestVersion))
|
||||
{
|
||||
if (!lastestVersion)
|
||||
if (!latestVersion)
|
||||
continue;
|
||||
if (szFormats[0])
|
||||
_tcscat(szFormats, _T(", "));
|
||||
|
|
|
@ -15,12 +15,12 @@ QueryAvailableFileSystemFormat(
|
|||
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which one? */
|
||||
OUT UCHAR* Major,
|
||||
OUT UCHAR* Minor,
|
||||
OUT BOOLEAN* LastestVersion)
|
||||
OUT BOOLEAN* LatestVersion)
|
||||
{
|
||||
PLIST_ENTRY ListEntry;
|
||||
PIFS_PROVIDER Provider;
|
||||
|
||||
if (!FileSystem || !Major ||!Minor ||!LastestVersion)
|
||||
if (!FileSystem || !Major ||!Minor ||!LatestVersion)
|
||||
return FALSE;
|
||||
|
||||
ListEntry = ProviderListHead.Flink;
|
||||
|
@ -38,7 +38,7 @@ QueryAvailableFileSystemFormat(
|
|||
wcscpy(FileSystem, Provider->Name);
|
||||
*Major = 0; /* FIXME */
|
||||
*Minor = 0; /* FIXME */
|
||||
*LastestVersion = TRUE; /* FIXME */
|
||||
*LatestVersion = TRUE; /* FIXME */
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
@ -211,7 +211,7 @@ CheckSectionValid(
|
|||
* Field[3] Minor version
|
||||
* Field[4] Product type
|
||||
* Field[5] Suite mask
|
||||
* Remark: lastests fields may be NULL if the information is not provided
|
||||
* Remark: these fields may be NULL if the information is not provided
|
||||
*/
|
||||
Fields[0] = Section;
|
||||
if (Fields[0] == NULL)
|
||||
|
|
|
@ -214,7 +214,7 @@ i8042MouHandleButtons(
|
|||
(DeviceExtension->MouseButtonState & ~Mask) | (NewButtonData & Mask);
|
||||
}
|
||||
|
||||
/* Does lastest initializations for the mouse. This method
|
||||
/* Does final initializations for the mouse. This method
|
||||
* is called just before connecting the interrupt.
|
||||
*/
|
||||
NTSTATUS
|
||||
|
|
|
@ -148,7 +148,7 @@ QueryAvailableFileSystemFormat(
|
|||
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which one? */
|
||||
OUT UCHAR* Major,
|
||||
OUT UCHAR* Minor,
|
||||
OUT BOOLEAN* LastestVersion);
|
||||
OUT BOOLEAN* LatestVersion);
|
||||
|
||||
BOOL NTAPI
|
||||
QueryDeviceInformation(
|
||||
|
|
Loading…
Reference in a new issue