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
a59324db
Commit
a59324db
authored
Nov 25, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Nov 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics.
parent
434466c8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
7 deletions
+9
-7
winedbg.c
debugger/winedbg.c
+1
-1
ifs.c
dlls/ole32/ifs.c
+4
-2
dosmem.c
msdos/dosmem.c
+1
-1
process.c
scheduler/process.c
+1
-1
cursoricon.c
windows/cursoricon.c
+1
-1
driver.c
windows/driver.c
+1
-1
No files found.
debugger/winedbg.c
View file @
a59324db
...
...
@@ -843,7 +843,7 @@ int DEBUG_main(int argc, char** argv)
SetConsoleCursorPosition
(
GetStdHandle
(
STD_OUTPUT_HANDLE
),
pos
);
}
DEBUG_Printf
(
DBG_CHN_MESG
,
"
Starting WineDb
g... "
);
DEBUG_Printf
(
DBG_CHN_MESG
,
"
WineDbg startin
g... "
);
if
(
argc
==
3
)
{
HANDLE
hEvent
;
...
...
dlls/ole32/ifs.c
View file @
a59324db
...
...
@@ -275,9 +275,11 @@ static ULONG WINAPI IMalloc_fnRelease(LPMALLOC iface) {
* IMalloc32_Alloc [VTABLE]
*/
static
LPVOID
WINAPI
IMalloc_fnAlloc
(
LPMALLOC
iface
,
DWORD
cb
)
{
LPVOID
addr
;
ICOM_THIS
(
IMalloc32Impl
,
iface
);
TRACE
(
"(%p)->Alloc(%ld)
\n
"
,
This
,
cb
);
return
HeapAlloc
(
GetProcessHeap
(),
0
,
cb
);
addr
=
HeapAlloc
(
GetProcessHeap
(),
0
,
cb
);
TRACE
(
"(%p)->Alloc(%ld) -> %p
\n
"
,
This
,
cb
,
addr
);
return
addr
;
}
/******************************************************************************
...
...
msdos/dosmem.c
View file @
a59324db
...
...
@@ -436,7 +436,7 @@ static void DOSMEM_InitMemory(void)
dm
->
size
=
DM_BLOCK_TERMINAL
;
root_block
->
size
|=
DM_BLOCK_FREE
#ifdef __DOSMEM_DEBUG__
|
DM_BLOCK_DEBUG
;
|
DM_BLOCK_DEBUG
#endif
;
}
...
...
scheduler/process.c
View file @
a59324db
...
...
@@ -348,7 +348,7 @@ static void start_process(void)
/* Call UserSignalProc ( USIG_PROCESS_RUNNING ... ) only for non-GUI win32 apps */
if
(
console_app
)
PROCESS_CallUserSignalProc
(
USIG_PROCESS_RUNNING
,
0
);
TRACE_
(
relay
)(
"Starting Win32 process
(entryproc=%p)
\n
"
,
entry
);
TRACE_
(
relay
)(
"Starting Win32 process
%s (entryproc=%p)
\n
"
,
current_process
.
exe_modref
->
filename
,
entry
);
if
(
debugged
)
DbgBreakPoint
();
/* FIXME: should use _PEB as parameter for NT 3.5 programs !
* Dunno about other OSs */
...
...
windows/cursoricon.c
View file @
a59324db
...
...
@@ -108,7 +108,7 @@ static HANDLE CURSORICON_FindSharedIcon( HMODULE hModule, HRSRC hRsrc )
/*************************************************************************
* CURSORICON_FindCache
*
* Given a handle, find the coresponding cache element
* Given a handle, find the cor
r
esponding cache element
*
* PARAMS
* Handle [I] handle to an Image
...
...
windows/driver.c
View file @
a59324db
...
...
@@ -861,7 +861,7 @@ HDRVR WINAPI OpenDriverA(LPCSTR lpDriverName, LPCSTR lpSectionName, LPARAM lPara
}
}
if
(
!
hDriver
)
ERR
(
"Failed to open driver %s from section %s
\n
"
,
lpDriverName
,
lpSectionName
);
ERR
(
"Failed to open driver %s from s
ystem.ini file, s
ection %s
\n
"
,
lpDriverName
,
lpSectionName
);
else
TRACE
(
"=> %08x
\n
"
,
hDriver
);
return
hDriver
;
...
...
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