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
61aac4ea
Commit
61aac4ea
authored
Jun 04, 2003
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 04, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some typos.
parent
a104d91c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
10 deletions
+11
-10
edit.c
controls/edit.c
+1
-1
queue.c
dlls/setupapi/queue.c
+3
-3
debugging.sgml
documentation/debugging.sgml
+1
-1
profile.c
files/profile.c
+4
-3
global.c
memory/global.c
+1
-1
rpcss_main.c
programs/rpcss/rpcss_main.c
+1
-1
No files found.
controls/edit.c
View file @
61aac4ea
...
...
@@ -348,7 +348,7 @@ static inline void EDIT_WM_Cut(EDITSTATE *es)
* get_app_version
*
* Returns the window version in case Wine emulates a later version
* of windows th
e
n the application expects.
* of windows th
a
n the application expects.
*
* In a number of cases when windows runs an application that was
* designed for an earlier windows version, windows reverts
...
...
dlls/setupapi/queue.c
View file @
61aac4ea
...
...
@@ -959,13 +959,13 @@ BOOL static do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style)
/*
* This is sort of an interesting workaround. You see, calling
* GetVersionInfoSize on a builtin dll loads that dll into memory
.
* GetVersionInfoSize on a builtin dll loads that dll into memory
* and we do not properly unload builtin dlls.. so we effectively
* lock into memory all the targets we are replacing. This leads
* to problems when we try to register the replaced dlls.
*
* So I will test for the exist
a
nce of the files first so that
* we just basically unconditionally replace the builtin versions
* So I will test for the exist
e
nce of the files first so that
* we just basically unconditionally replace the builtin versions
.
*/
if
((
GetFileAttributesW
(
target
)
!=
INVALID_FILE_ATTRIBUTES
)
&&
(
GetFileAttributesW
(
source
)
!=
INVALID_FILE_ATTRIBUTES
))
...
...
documentation/debugging.sgml
View file @
61aac4ea
...
...
@@ -137,7 +137,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(xxx);
</programlisting>
</para>
<para>
I
rare situations there is a need to output to more the
n one
I
n rare situations there is a need to output to more tha
n one
debug channel per file. In such cases, you need to declare
all the additional channels at the top of the file, and
use the _-version of the debugging macros:
...
...
files/profile.c
View file @
61aac4ea
...
...
@@ -422,9 +422,10 @@ static PROFILEKEY *PROFILE_Find( PROFILESECTION **section, LPCWSTR section_name,
while
(
*
key
)
{
/* If create_always is FALSE then we check if the keyname already exists.
* Otherwise we add it regardless of its existence, to allow
* keys to be added more then once in some cases.
/* If create_always is FALSE then we check if the keyname
* already exists. Otherwise we add it regardless of its
* existence, to allow keys to be added more than once in
* some cases.
*/
if
(
!
create_always
)
{
...
...
memory/global.c
View file @
61aac4ea
...
...
@@ -1060,7 +1060,7 @@ DWORD WINAPI GetFreeMemInfo16(void)
#define POINTER_TO_HANDLE(p) (*(((HGLOBAL *)(p))-2))
#define ISHANDLE(h) (((ULONG_PTR)(h)&2)!=0)
#define ISPOINTER(h) (((ULONG_PTR)(h)&2)==0)
/* al
l
ign the storage needed for the HGLOBAL on an 8byte boundary thus
/* align the storage needed for the HGLOBAL on an 8byte boundary thus
* GlobalAlloc/GlobalReAlloc'ing with GMEM_MOVEABLE of memory with
* size = 8*k, where k=1,2,3,... alloc's exactly the given size.
* The Minolta DiMAGE Image Viewer heavily relies on this, corrupting
...
...
programs/rpcss/rpcss_main.c
View file @
61aac4ea
...
...
@@ -79,7 +79,7 @@ void RPCSS_SetMaxLazyTimeout(long mlt)
{
/* FIXME: this max ensures that no caller will decrease our wait time,
but could have other bad results. fix: Store "next_max_lazy_timeout"
and install it as nec
ce
sary next time we "do work"? */
and install it as nec
es
sary next time we "do work"? */
max_lazy_timeout
=
max
(
RPCSS_GetLazyTimeRemaining
(),
mlt
);
}
...
...
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