Commit da920ee9 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Spelling fixes.

parent 635d965a
...@@ -120,7 +120,7 @@ GetTokenInformation( HANDLE token, TOKEN_INFORMATION_CLASS tokeninfoclass, ...@@ -120,7 +120,7 @@ GetTokenInformation( HANDLE token, TOKEN_INFORMATION_CLASS tokeninfoclass,
BOOL WINAPI SetThreadToken(PHANDLE thread, HANDLE token) BOOL WINAPI SetThreadToken(PHANDLE thread, HANDLE token)
{ {
FIXME("(%p, %x): stub\n", thread, token); FIXME("(%p, %x): stub (NT impl. only)\n", thread, token);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
......
...@@ -2544,7 +2544,7 @@ static BOOL MMDRV_InitFromRegistry(void) ...@@ -2544,7 +2544,7 @@ static BOOL MMDRV_InitFromRegistry(void)
static BOOL MMDRV_InitHardcoded(void) static BOOL MMDRV_InitHardcoded(void)
{ {
ERR("You didn't setup properly the config file for the Wine multimedia modules.\n" ERR("You didn't setup properly the config file for the Wine multimedia modules.\n"
"Will use the hard-coded setup, but this will disapear soon.\n" "Will use the hard-coded setup, but this will disappear soon.\n"
"Please add a WinMM section to your Wine config file.\n"); "Please add a WinMM section to your Wine config file.\n");
/* first load hardware drivers */ /* first load hardware drivers */
......
...@@ -543,7 +543,7 @@ static FOURCC MMIO_ParseExt(LPCSTR szFileName) ...@@ -543,7 +543,7 @@ static FOURCC MMIO_ParseExt(LPCSTR szFileName)
/************************************************************************** /**************************************************************************
* MMIO_Get [internal] * MMIO_Get [internal]
* *
* Retirieves from current process the mmio object * Retrieves the mmio object from current process
*/ */
static LPWINE_MMIO MMIO_Get(LPWINE_MM_IDATA iData, HMMIO h) static LPWINE_MMIO MMIO_Get(LPWINE_MM_IDATA iData, HMMIO h)
{ {
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
*.dvi *.dvi
*.junk *.junk
*.log *.log
*.out
*.tex *.tex
DBTOHTML_OUTPUT_DIR* DBTOHTML_OUTPUT_DIR*
Makefile Makefile
......
...@@ -168,7 +168,13 @@ or in Unix format ( ...@@ -168,7 +168,13 @@ or in Unix format (
). You may pass arguments to the program being executed by adding them ). You may pass arguments to the program being executed by adding them
to the end of the command line invoking to the end of the command line invoking
.B wine .B wine
(such as: wine notepad C:\(rs\(rsTEMP\(rs\(rsREADME.TXT). Command line processing goes as (such as: wine notepad C:\(rs\(rsTEMP\(rs\(rsREADME.TXT).
Note that you need to '\(rs' escape special characters (and spaces) when invoking Wine via
a shell, e.g.
.PP
wine C:\(rs\(rsProgram\(rs Files\(rs\(rsMyPrg\(rs\(rstest.exe
.PP
Command line processing goes as
follows: first follows: first
.B wine .B wine
checks whether one or more of the above mentioned checks whether one or more of the above mentioned
......
...@@ -383,7 +383,7 @@ static int do_relocations( char *base, const IMAGE_NT_HEADERS *nt, const char *f ...@@ -383,7 +383,7 @@ static int do_relocations( char *base, const IMAGE_NT_HEADERS *nt, const char *f
if (!dir->VirtualAddress || !dir->Size) if (!dir->VirtualAddress || !dir->Size)
{ {
if (nt->OptionalHeader.ImageBase == 0x400000) if (nt->OptionalHeader.ImageBase == 0x400000)
ERR("Standard load address for a Win32 program not available - patched kernel ?\n"); ERR("Standard load address for a Win32 program (0x00400000) not available - patched kernel ?\n");
ERR( "FATAL: Need to relocate %s, but no relocation records present (%s). Try to run that file directly !\n", ERR( "FATAL: Need to relocate %s, but no relocation records present (%s). Try to run that file directly !\n",
filename, filename,
(nt->FileHeader.Characteristics&IMAGE_FILE_RELOCS_STRIPPED)? (nt->FileHeader.Characteristics&IMAGE_FILE_RELOCS_STRIPPED)?
...@@ -455,7 +455,7 @@ static int do_relocations( char *base, const IMAGE_NT_HEADERS *nt, const char *f ...@@ -455,7 +455,7 @@ static int do_relocations( char *base, const IMAGE_NT_HEADERS *nt, const char *f
* (at least) Linux does only support offsets which are page-aligned. * (at least) Linux does only support offsets which are page-aligned.
* *
* BUT we have to map the whole image anyway, for Win32 programs sometimes * BUT we have to map the whole image anyway, for Win32 programs sometimes
* want to access them. (HMODULE32 point to the start of it) * want to access them. (HMODULE points to the start of it)
*/ */
HMODULE PE_LoadImage( HANDLE hFile, LPCSTR filename, DWORD flags ) HMODULE PE_LoadImage( HANDLE hFile, LPCSTR filename, DWORD flags )
{ {
......
...@@ -78,6 +78,9 @@ static VERSION_DATA VersionData[NB_WINDOWS_VERSIONS] = ...@@ -78,6 +78,9 @@ static VERSION_DATA VersionData[NB_WINDOWS_VERSIONS] =
0x07000304, 0x07000304,
0xC0000004, 0xC0000004,
{ {
/* 0x40003B6 == 4.00.950 == Win95 orig. release and Win95a
* 0x4000457 == 4.00.1111 == Win95B aka Win95 OSR2
* Win95a/B can be discerned via regkey SubVersionNumber */
sizeof(OSVERSIONINFOA), 4, 0, 0x40003B6, sizeof(OSVERSIONINFOA), 4, 0, 0x40003B6,
VER_PLATFORM_WIN32_WINDOWS, "Win95" VER_PLATFORM_WIN32_WINDOWS, "Win95"
} }
......
...@@ -2529,7 +2529,7 @@ UINT WINAPI CompareStringW(DWORD lcid, DWORD fdwStyle, ...@@ -2529,7 +2529,7 @@ UINT WINAPI CompareStringW(DWORD lcid, DWORD fdwStyle,
{ {
int len,ret; int len,ret;
if(fdwStyle & NORM_IGNORENONSPACE) if(fdwStyle & NORM_IGNORENONSPACE)
FIXME("IGNORENONSPACE not supprted\n"); FIXME("IGNORENONSPACE not supported\n");
if(fdwStyle & NORM_IGNORESYMBOLS) if(fdwStyle & NORM_IGNORESYMBOLS)
FIXME("IGNORESYMBOLS not supported\n"); FIXME("IGNORESYMBOLS not supported\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment