Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
66834324
Commit
66834324
authored
Apr 20, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
Remove wszRegSeparator from devenum_private.h since it's neither exported by createdevenum.c nor used by anyone else.
parent
f04b9d0b
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
10 deletions
+9
-10
elf_module.c
dlls/dbghelp/elf_module.c
+1
-1
stack.c
dlls/dbghelp/stack.c
+1
-1
createdevenum.c
dlls/devenum/createdevenum.c
+3
-3
devenum_private.h
dlls/devenum/devenum_private.h
+0
-1
url.c
dlls/shlwapi/url.c
+1
-1
running.sgml
documentation/running.sgml
+1
-1
winspool.h
include/winspool.h
+2
-2
No files found.
dlls/dbghelp/elf_module.c
View file @
66834324
...
...
@@ -543,7 +543,7 @@ unsigned long elf_read_wine_loader_dbg_info(struct process* pcs)
elf_info
.
flags
=
ELF_INFO_DEBUG_HEADER
;
/* All binaries are loaded with WINELOADER (if run from tree) or by the
* main executable (either wine-kthread or wine-pthread)
* Note: the heuristic use to know w
ether we need to load wine-pthread or
* Note: the heuristic use to know w
hether we need to load wine-pthread or
* wine-kthread is not 100% safe
*/
if
((
ptr
=
getenv
(
"WINELOADER"
)))
...
...
dlls/dbghelp/stack.c
View file @
66834324
...
...
@@ -356,7 +356,7 @@ BOOL WINAPI StackWalk(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
}
}
frame
->
AddrFrame
.
Offset
&=
~
1
;
/* we "pop" param
a
ters as 16 bit entities... of course, this won't
/* we "pop" param
e
ters as 16 bit entities... of course, this won't
* work if the parameter is in fact bigger than 16bit, but
* there's no way to know that here
*/
...
...
dlls/devenum/createdevenum.c
View file @
66834324
...
...
@@ -39,7 +39,7 @@ extern HINSTANCE DEVENUM_hInstance;
const
WCHAR
wszInstanceKeyName
[]
=
{
'I'
,
'n'
,
's'
,
't'
,
'a'
,
'n'
,
'c'
,
'e'
,
0
};
static
const
WCHAR
wszRegSep
e
rator
[]
=
{
'\\'
,
0
};
static
const
WCHAR
wszRegSep
a
rator
[]
=
{
'\\'
,
0
};
static
const
WCHAR
wszActiveMovieKey
[]
=
{
'S'
,
'o'
,
'f'
,
't'
,
'w'
,
'a'
,
'r'
,
'e'
,
'\\'
,
'M'
,
'i'
,
'c'
,
'r'
,
'o'
,
's'
,
'o'
,
'f'
,
't'
,
'\\'
,
'A'
,
'c'
,
't'
,
'i'
,
'v'
,
'e'
,
'M'
,
'o'
,
'v'
,
'i'
,
'e'
,
'\\'
,
...
...
@@ -141,12 +141,12 @@ HRESULT WINAPI DEVENUM_ICreateDevEnum_CreateClassEnumerator(
{
hbasekey
=
HKEY_CLASSES_ROOT
;
strcpyW
(
wszRegKey
,
clsid_keyname
);
strcatW
(
wszRegKey
,
wszRegSep
e
rator
);
strcatW
(
wszRegKey
,
wszRegSep
a
rator
);
if
(
!
StringFromGUID2
(
clsidDeviceClass
,
wszRegKey
+
CLSID_STR_LEN
,
MAX_PATH
-
CLSID_STR_LEN
))
return
E_OUTOFMEMORY
;
strcatW
(
wszRegKey
,
wszRegSep
e
rator
);
strcatW
(
wszRegKey
,
wszRegSep
a
rator
);
strcatW
(
wszRegKey
,
wszInstanceKeyName
);
}
...
...
dlls/devenum/devenum_private.h
View file @
66834324
...
...
@@ -103,7 +103,6 @@ extern ParseDisplayNameImpl DEVENUM_ParseDisplayName;
*/
extern
const
WCHAR
clsid_keyname
[
6
];
extern
const
WCHAR
wszInstanceKeyName
[];
extern
const
WCHAR
wszRegSeperator
[];
#define CLSID_STR_LEN (sizeof(clsid_keyname) / sizeof(WCHAR))
/**********************************************************************
...
...
dlls/shlwapi/url.c
View file @
66834324
...
...
@@ -855,7 +855,7 @@ HRESULT WINAPI UrlCombineW(LPCWSTR pszBase, LPCWSTR pszRelative,
break
;
case
3
:
/*
* Return the pszBase scheme with pszRelative. Basicly
* Return the pszBase scheme with pszRelative. Basic
al
ly
* keeps the scheme and replaces the domain and following.
*/
len
=
base
.
sizep1
+
1
+
relative
.
sizep2
+
1
;
...
...
documentation/running.sgml
View file @
66834324
...
...
@@ -638,7 +638,7 @@ Options:
on the screen, and the window which displays a
given area of this screen buffer. Note that the
window is always smaller or of the same size than
the screen buffer. Having a stricly smaller window
the screen buffer. Having a stric
t
ly smaller window
size will put on scrollbars on the window so that
you can see the whole screenbuffer's content.
</entry>
...
...
include/winspool.h
View file @
66834324
...
...
@@ -347,8 +347,8 @@ DECL_WINELIB_TYPE_AW(PPRINTER_INFO_1)
DECL_WINELIB_TYPE_AW
(
LPPRINTER_INFO_1
)
/* FIXME: winspool.h declares some structure members with the name Status.
* unfortunatly <X11/ICE/ICElib.h> #defines Status to the type 'int'
* therfore the following hack */
* unfortunat
e
ly <X11/ICE/ICElib.h> #defines Status to the type 'int'
* ther
e
fore the following hack */
#ifndef Status
typedef
struct
_PRINTER_INFO_2A
{
...
...
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