mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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];
|
WCHAR szFormatW[MAX_PATH];
|
||||||
DWORD Index = 0;
|
DWORD Index = 0;
|
||||||
BYTE dummy;
|
BYTE dummy;
|
||||||
BOOLEAN lastestVersion;
|
BOOLEAN latestVersion;
|
||||||
|
|
||||||
LoadStringAndOem( GetModuleHandle(NULL), STRING_HELP, (LPTSTR) szMsg,RC_STRING_MAX_SIZE);
|
LoadStringAndOem( GetModuleHandle(NULL), STRING_HELP, (LPTSTR) szMsg,RC_STRING_MAX_SIZE);
|
||||||
if (!LoadFMIFSEntryPoints())
|
if (!LoadFMIFSEntryPoints())
|
||||||
|
@ -286,9 +286,9 @@ static VOID Usage( LPTSTR ProgramName )
|
||||||
}
|
}
|
||||||
|
|
||||||
szFormats[0] = 0;
|
szFormats[0] = 0;
|
||||||
while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy, &dummy, &lastestVersion))
|
while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy, &dummy, &latestVersion))
|
||||||
{
|
{
|
||||||
if (!lastestVersion)
|
if (!latestVersion)
|
||||||
continue;
|
continue;
|
||||||
if (szFormats[0])
|
if (szFormats[0])
|
||||||
_tcscat(szFormats, _T(", "));
|
_tcscat(szFormats, _T(", "));
|
||||||
|
|
|
@ -15,12 +15,12 @@ QueryAvailableFileSystemFormat(
|
||||||
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which one? */
|
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which one? */
|
||||||
OUT UCHAR* Major,
|
OUT UCHAR* Major,
|
||||||
OUT UCHAR* Minor,
|
OUT UCHAR* Minor,
|
||||||
OUT BOOLEAN* LastestVersion)
|
OUT BOOLEAN* LatestVersion)
|
||||||
{
|
{
|
||||||
PLIST_ENTRY ListEntry;
|
PLIST_ENTRY ListEntry;
|
||||||
PIFS_PROVIDER Provider;
|
PIFS_PROVIDER Provider;
|
||||||
|
|
||||||
if (!FileSystem || !Major ||!Minor ||!LastestVersion)
|
if (!FileSystem || !Major ||!Minor ||!LatestVersion)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
ListEntry = ProviderListHead.Flink;
|
ListEntry = ProviderListHead.Flink;
|
||||||
|
@ -38,7 +38,7 @@ QueryAvailableFileSystemFormat(
|
||||||
wcscpy(FileSystem, Provider->Name);
|
wcscpy(FileSystem, Provider->Name);
|
||||||
*Major = 0; /* FIXME */
|
*Major = 0; /* FIXME */
|
||||||
*Minor = 0; /* FIXME */
|
*Minor = 0; /* FIXME */
|
||||||
*LastestVersion = TRUE; /* FIXME */
|
*LatestVersion = TRUE; /* FIXME */
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -211,7 +211,7 @@ CheckSectionValid(
|
||||||
* Field[3] Minor version
|
* Field[3] Minor version
|
||||||
* Field[4] Product type
|
* Field[4] Product type
|
||||||
* Field[5] Suite mask
|
* 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;
|
Fields[0] = Section;
|
||||||
if (Fields[0] == NULL)
|
if (Fields[0] == NULL)
|
||||||
|
|
|
@ -214,7 +214,7 @@ i8042MouHandleButtons(
|
||||||
(DeviceExtension->MouseButtonState & ~Mask) | (NewButtonData & Mask);
|
(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.
|
* is called just before connecting the interrupt.
|
||||||
*/
|
*/
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
|
|
@ -148,7 +148,7 @@ QueryAvailableFileSystemFormat(
|
||||||
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which one? */
|
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is mandatory, but which one? */
|
||||||
OUT UCHAR* Major,
|
OUT UCHAR* Major,
|
||||||
OUT UCHAR* Minor,
|
OUT UCHAR* Minor,
|
||||||
OUT BOOLEAN* LastestVersion);
|
OUT BOOLEAN* LatestVersion);
|
||||||
|
|
||||||
BOOL NTAPI
|
BOOL NTAPI
|
||||||
QueryDeviceInformation(
|
QueryDeviceInformation(
|
||||||
|
|
Loading…
Reference in a new issue