Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bb8e625b
Commit
bb8e625b
authored
Dec 04, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
bf9865d3
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
27 additions
and
27 deletions
+27
-27
README
README
+2
-2
gdi_private.h
dlls/gdi32/gdi_private.h
+1
-1
ifenum.c
dlls/iphlpapi/ifenum.c
+1
-1
cpu.c
dlls/kernel32/cpu.c
+2
-2
instr.c
dlls/kernel32/instr.c
+2
-2
process.c
dlls/kernel32/process.c
+1
-1
selector.c
dlls/kernel32/selector.c
+1
-1
headers.c
dlls/msvcrt/tests/headers.c
+1
-1
storage32.h
dlls/ole32/storage32.h
+1
-1
typelib.h
dlls/oleaut32/typelib.h
+2
-2
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+1
-1
shell32_main.c
dlls/shell32/shell32_main.c
+2
-2
mdi.c
dlls/user32/mdi.c
+1
-1
process.h
include/msvcrt/process.h
+1
-1
windef.h
include/windef.h
+2
-2
mmap.c
libs/wine/mmap.c
+1
-1
typelib_struct.h
tools/widl/typelib_struct.h
+2
-2
le.c
tools/winedump/le.c
+1
-1
msc.c
tools/winedump/msc.c
+1
-1
winegcc.c
tools/winegcc/winegcc.c
+1
-1
No files found.
README
View file @
bb8e625b
...
...
@@ -32,7 +32,7 @@ To compile and run Wine, you must have one of the following:
FreeBSD 5.3 or later
Solaris x86 2.5 or later
NetBSD-current
MacOS X 10.4 or later
Mac
OS X 10.4 or later
As Wine requires kernel-level thread support to run, only the operating
systems mentioned above are supported.
...
...
@@ -61,7 +61,7 @@ NetBSD info:
Make sure you have the USER_LDT, SYSVSHM, SYSVSEM, and SYSVMSG options
turned on in your kernel.
Mac
OS
info:
Mac
OS X
info:
You need Xcode 2.4 or later to build properly on x86.
...
...
dlls/gdi32/gdi_private.h
View file @
bb8e625b
...
...
@@ -499,7 +499,7 @@ extern HPALETTE PALETTE_Init(void);
/* region.c */
extern
BOOL
REGION_FrameRgn
(
HRGN
dest
,
HRGN
src
,
INT
x
,
INT
y
);
/* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal enties */
/* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal ent
r
ies */
#define DIB_PAL_MONO 2
#endif
/* __WINE_GDI_PRIVATE_H */
...
...
dlls/iphlpapi/ifenum.c
View file @
bb8e625b
...
...
@@ -22,7 +22,7 @@
* interface:
* - a specific IOCTL (Linux)
* - looking in the ARP cache (at least Solaris)
* - using the sysctl interface (FreeBSD and Mac
OS
X)
* - using the sysctl interface (FreeBSD and Mac
OS
X)
* Solaris and some others have SIOCGENADDR, but I haven't gotten that to work
* on the Solaris boxes at SourceForge's compile farm, whereas SIOCGARP does.
*/
...
...
dlls/kernel32/cpu.c
View file @
bb8e625b
...
...
@@ -326,7 +326,7 @@ VOID WINAPI GetSystemInfo(
memset
(
PF
,
0
,
sizeof
(
PF
));
/* choose sensible defaults ...
* FIXME: perhaps overrid
e
able with precompiler flags?
* FIXME: perhaps overridable with precompiler flags?
*/
cachedsi
.
u
.
s
.
wProcessorArchitecture
=
PROCESSOR_ARCHITECTURE_INTEL
;
cachedsi
.
dwPageSize
=
getpagesize
();
...
...
@@ -341,7 +341,7 @@ VOID WINAPI GetSystemInfo(
cachedsi
.
wProcessorLevel
=
5
;
/* 586 */
cachedsi
.
wProcessorRevision
=
0
;
cache
=
1
;
/* even if there is no more info, we now have a cacheentry */
cache
=
1
;
/* even if there is no more info, we now have a cache
entry */
memcpy
(
si
,
&
cachedsi
,
sizeof
(
*
si
));
/* Hmm, reasonable processor feature defaults? */
...
...
dlls/kernel32/instr.c
View file @
bb8e625b
...
...
@@ -643,10 +643,10 @@ DWORD INSTR_EmulateInstruction( EXCEPTION_RECORD *rec, CONTEXT86 *context )
int
seg
=
outp
?
context
->
SegDs
:
context
->
SegEs
;
/* FIXME: is this right? */
if
(
outp
)
/* FIXME: Check segment readable. */
/* FIXME: Check segment
is
readable. */
(
void
)
0
;
else
/* FIXME: Check segment
write
able. */
/* FIXME: Check segment
is writ
able. */
(
void
)
0
;
if
(
repX
)
...
...
dlls/kernel32/process.c
View file @
bb8e625b
...
...
@@ -1806,7 +1806,7 @@ UINT WINAPI WinExec( LPCSTR lpCmdLine, UINT nCmdShow )
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
nCmdShow
;
/* cmdline needs to be writ
e
able for CreateProcess */
/* cmdline needs to be writable for CreateProcess */
if
(
!
(
cmdline
=
HeapAlloc
(
GetProcessHeap
(),
0
,
strlen
(
lpCmdLine
)
+
1
)))
return
0
;
strcpy
(
cmdline
,
lpCmdLine
);
...
...
dlls/kernel32/selector.c
View file @
bb8e625b
...
...
@@ -385,7 +385,7 @@ BOOL16 WINAPI IsBadHugeWritePtr16( SEGPTR ptr, DWORD size )
if
(
!
sel
)
return
TRUE
;
wine_ldt_get_entry
(
sel
,
&
entry
);
if
(
wine_ldt_is_empty
(
&
entry
))
return
TRUE
;
/* check for writ
e
able data segment, ignoring expand-down and accessed flags */
/* check for writable data segment, ignoring expand-down and accessed flags */
if
((
entry
.
HighWord
.
Bits
.
Type
^
WINE_LDT_FLAGS_DATA
)
&
~
5
)
return
TRUE
;
if
(
size
&&
(
OFFSETOF
(
ptr
)
+
size
-
1
>
wine_ldt_get_limit
(
&
entry
)))
return
TRUE
;
return
FALSE
;
...
...
dlls/msvcrt/tests/headers.c
View file @
bb8e625b
...
...
@@ -17,7 +17,7 @@
*
* This file contains tests to ensure the consistency between symbols
* defined in the regular msvcrt headers, and the corresponding duplicated
* symbol defined in msvcrt.h (prefixed by MSVCRT_).
* symbol
s
defined in msvcrt.h (prefixed by MSVCRT_).
*/
#include "dos.h"
...
...
dlls/ole32/storage32.h
View file @
bb8e625b
...
...
@@ -327,7 +327,7 @@ BlockChainStream* Storage32Impl_SmallBlocksToBigBlocks(
/****************************************************************************
* StgStreamImpl definitions.
*
* This class im
lements the IStream32 inte
face and represents a stream
* This class im
plements the IStream32 inter
face and represents a stream
* located inside a storage object.
*/
struct
StgStreamImpl
...
...
dlls/oleaut32/typelib.h
View file @
bb8e625b
...
...
@@ -149,7 +149,7 @@ typedef struct tagMSFT_TypeInfoBase {
/*050*/
INT
size
;
/* size in bytes, at least for structures */
/* FIXME: name of this field */
INT
datatype1
;
/* position in type description table */
/* or in base intefaces */
/* or in base inte
r
faces */
/* if coclass: offset in reftable */
/* if interface: reference to inherited if */
/* if module: offset to dllname in name table */
...
...
@@ -285,7 +285,7 @@ typedef struct {
lower-middle 8 bits are unknown (flags?),
upper 16 bits are hash code */
}
MSFT_NameIntro
;
/* the custom data table directory has enties like this */
/* the custom data table directory has ent
r
ies like this */
typedef
struct
{
INT
GuidOffset
;
INT
DataOffset
;
...
...
dlls/rpcrt4/ndr_stubless.c
View file @
bb8e625b
...
...
@@ -1024,7 +1024,7 @@ __ASM_GLOBAL_FUNC(call_server_func,
"pushl %esi
\n\t
"
"movl 16(%ebp), %eax
\n\t
"
/* Get stack size */
"subl %eax, %esp
\n\t
"
/* Make room in stack for arguments */
"andl $~15, %esp
\n\t
"
/* Make sure stack has 16-byte alignment for MacOS X */
"andl $~15, %esp
\n\t
"
/* Make sure stack has 16-byte alignment for Mac
OS X */
"movl %esp, %edi
\n\t
"
"movl %eax, %ecx
\n\t
"
"movl 12(%ebp), %esi
\n\t
"
...
...
dlls/shell32/shell32_main.c
View file @
bb8e625b
...
...
@@ -120,7 +120,7 @@ LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCmdline, int* numargs)
return
argv
;
}
/* to get a writ
e
able copy */
/* to get a writable copy */
argc
=
0
;
bcount
=
0
;
in_quotes
=
0
;
...
...
@@ -356,7 +356,7 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR path,DWORD dwFileAttributes,
(
flags
&
(
SHGFI_ATTRIBUTES
|
SHGFI_EXETYPE
|
SHGFI_PIDL
)))
return
FALSE
;
/* windows initializes th
is
values regardless of the flags */
/* windows initializes th
ese
values regardless of the flags */
if
(
psfi
!=
NULL
)
{
psfi
->
szDisplayName
[
0
]
=
'\0'
;
...
...
dlls/user32/mdi.c
View file @
bb8e625b
...
...
@@ -219,7 +219,7 @@ static BOOL is_close_enabled(HWND hwnd, HMENU hSysMenu)
/**********************************************************************
* MDI_GetWindow
*
* returns "activat
e
able" child different from the current or zero
* returns "activatable" child different from the current or zero
*/
static
HWND
MDI_GetWindow
(
MDICLIENTINFO
*
clientInfo
,
HWND
hWnd
,
BOOL
bNext
,
DWORD
dwStyleMask
)
...
...
include/msvcrt/process.h
View file @
bb8e625b
...
...
@@ -31,7 +31,7 @@ typedef unsigned short wchar_t;
#ifndef __stdcall
# ifdef __i386__
# ifdef __GNUC__
# ifdef __APPLE__
/* Mac OS
X uses
16-byte aligned stack and not a 4-byte one */
# ifdef __APPLE__
/* Mac OS
X uses a
16-byte aligned stack and not a 4-byte one */
# define __stdcall __attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))
# else
# define __stdcall __attribute__((__stdcall__))
...
...
include/windef.h
View file @
bb8e625b
...
...
@@ -52,7 +52,7 @@ extern "C" {
#ifndef __stdcall
# ifdef __i386__
# ifdef __GNUC__
# ifdef __APPLE__
/* Mac OS
X uses
16-byte aligned stack and not a 4-byte one */
# ifdef __APPLE__
/* Mac OS
X uses a
16-byte aligned stack and not a 4-byte one */
# define __stdcall __attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))
# else
# define __stdcall __attribute__((__stdcall__))
...
...
@@ -69,7 +69,7 @@ extern "C" {
#ifndef __cdecl
# if defined(__i386__) && defined(__GNUC__)
# ifdef __APPLE__
/* Mac OSX uses 16-byte aligned stack and not a 4-byte one */
# ifdef __APPLE__
/* Mac OS
X uses 16-byte aligned stack and not a 4-byte one */
# define __cdecl __attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))
# else
# define __cdecl __attribute__((__cdecl__))
...
...
libs/wine/mmap.c
View file @
bb8e625b
...
...
@@ -90,7 +90,7 @@ static inline int get_fdzero(void)
* the address argument in this case.
*
* As Wine code occasionally relies on the Linux behaviour, e.g. to
* be able to map non-relocat
e
able PE executables to their proper
* be able to map non-relocatable PE executables to their proper
* start addresses, or to map the DOS memory to 0, this routine
* emulates the Linux behaviour by checking whether the desired
* address range is still available, and placing the mapping there
...
...
tools/widl/typelib_struct.h
View file @
bb8e625b
...
...
@@ -148,7 +148,7 @@ typedef struct tagMSFT_TypeInfoBase {
/*050*/
INT
size
;
/* size in bytes, at least for structures */
/* FIXME: name of this field */
INT
datatype1
;
/* position in type description table */
/* or in base intefaces */
/* or in base inte
r
faces */
/* if coclass: offset in reftable */
/* if interface: reference to inherited if */
INT
datatype2
;
/* for interfaces: hiword is num of inherited funcs */
...
...
@@ -286,7 +286,7 @@ typedef struct {
/* 0x3800 if name is typeinfo name */
/* upper 16 bits are hash code */
}
MSFT_NameIntro
;
/* the custom data table directory has enties like this */
/* the custom data table directory has ent
r
ies like this */
typedef
struct
{
INT
GuidOffset
;
INT
DataOffset
;
...
...
tools/winedump/le.c
View file @
bb8e625b
...
...
@@ -253,7 +253,7 @@ static void dump_le_objects( const IMAGE_VXD_HEADER *le )
if
(
pobj
->
o32_flags
&
0x0001
)
printf
(
"
\t
Readable
\n
"
);
if
(
pobj
->
o32_flags
&
0x0002
)
printf
(
"
\t
Writ
e
able
\n
"
);
printf
(
"
\t
Writable
\n
"
);
if
(
pobj
->
o32_flags
&
0x0004
)
printf
(
"
\t
Executable
\n
"
);
if
(
pobj
->
o32_flags
&
0x0008
)
...
...
tools/winedump/msc.c
View file @
bb8e625b
...
...
@@ -843,7 +843,7 @@ int codeview_dump_symbols(const void* root, unsigned long size)
break
;
case
S_PUB_V3
:
/* not completly sure of those two anyway */
/* not complet
e
ly sure of those two anyway */
case
S_PUB_FUNC1_V3
:
case
S_PUB_FUNC2_V3
:
printf
(
"
\t
S-Public%s V3 '%s' %04x:%08x type:%08x
\n
"
,
...
...
tools/winegcc/winegcc.c
View file @
bb8e625b
...
...
@@ -285,7 +285,7 @@ static void compile(struct options* opts, const char* lang)
if
(
gcc_defs
)
{
#ifdef __APPLE__
/* Mac OS
X uses
16-byte aligned stack and not a 4-byte one */
#ifdef __APPLE__
/* Mac OS
X uses a
16-byte aligned stack and not a 4-byte one */
strarray_add
(
comp_args
,
"-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))"
);
strarray_add
(
comp_args
,
"-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))"
);
strarray_add
(
comp_args
,
"-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment