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
217a682b
Commit
217a682b
authored
Aug 25, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Aug 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cosmetic changes.
parent
8337f28b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
treeview.c
dlls/comctl32/treeview.c
+1
-1
dib.c
graphics/x11drv/dib.c
+2
-2
miscemu.h
include/miscemu.h
+1
-1
comm.c
misc/comm.c
+1
-1
version.c
misc/version.c
+1
-1
int2f.c
msdos/int2f.c
+1
-1
No files found.
dlls/comctl32/treeview.c
View file @
217a682b
...
@@ -3016,7 +3016,7 @@ TREEVIEW_Expand (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3016,7 +3016,7 @@ TREEVIEW_Expand (HWND hwnd, WPARAM wParam, LPARAM lParam)
if
(
!
wineItem
)
if
(
!
wineItem
)
{
{
ERR
(
ERR
(
"Catastrop
ic situation, cannot retrei
ve item #%d
\n
"
,
"Catastrop
hic situation, cannot retrie
ve item #%d
\n
"
,
expand
);
expand
);
return
FALSE
;
return
FALSE
;
}
}
...
...
graphics/x11drv/dib.c
View file @
217a682b
...
@@ -2602,7 +2602,7 @@ int X11DRV_DIB_SetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
...
@@ -2602,7 +2602,7 @@ int X11DRV_DIB_SetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
descr
->
infoWidth
,
lines
,
32
,
0
);
descr
->
infoWidth
,
lines
,
32
,
0
);
bmpImage
->
data
=
calloc
(
lines
,
bmpImage
->
bytes_per_line
);
bmpImage
->
data
=
calloc
(
lines
,
bmpImage
->
bytes_per_line
);
if
(
bmpImage
->
data
==
NULL
)
{
if
(
bmpImage
->
data
==
NULL
)
{
ERR
(
"Out of memory!"
);
ERR
(
"Out of memory!
\n
"
);
XDestroyImage
(
bmpImage
);
XDestroyImage
(
bmpImage
);
return
lines
;
return
lines
;
}
}
...
@@ -2705,7 +2705,7 @@ int X11DRV_DIB_GetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
...
@@ -2705,7 +2705,7 @@ int X11DRV_DIB_GetImageBits( const X11DRV_DIB_IMAGEBITS_DESCR *descr )
descr
->
infoWidth
,
lines
,
32
,
0
);
descr
->
infoWidth
,
lines
,
32
,
0
);
bmpImage
->
data
=
calloc
(
lines
,
bmpImage
->
bytes_per_line
);
bmpImage
->
data
=
calloc
(
lines
,
bmpImage
->
bytes_per_line
);
if
(
bmpImage
->
data
==
NULL
)
{
if
(
bmpImage
->
data
==
NULL
)
{
ERR
(
"Out of memory!"
);
ERR
(
"Out of memory!
\n
"
);
XDestroyImage
(
bmpImage
);
XDestroyImage
(
bmpImage
);
return
lines
;
return
lines
;
}
}
}
}
...
...
include/miscemu.h
View file @
217a682b
...
@@ -245,7 +245,7 @@ extern void ASPI_DOS_HandleInt(CONTEXT86 *context);
...
@@ -245,7 +245,7 @@ extern void ASPI_DOS_HandleInt(CONTEXT86 *context);
/* NOTE: Interrupts might get called from three modes: real mode, 16-bit, and
/* NOTE: Interrupts might get called from three modes: real mode, 16-bit, and
* (via DeviceIoControl) 32-bit. For automatic conversion of pointer
* (via DeviceIoControl) 32-bit. For automatic conversion of pointer
* parameters, interrupt handlers should use CTX_SEG_OFF_TO_LIN with
* parameters, interrupt handlers should use CTX_SEG_OFF_TO_LIN with
* the contents of a seg
e
ment register as second and the contents of
* the contents of a segment register as second and the contents of
* a *32-bit* general register as third parameter, e.g.
* a *32-bit* general register as third parameter, e.g.
* CTX_SEG_OFF_TO_LIN( context, DS_reg(context), EDX_reg(context) )
* CTX_SEG_OFF_TO_LIN( context, DS_reg(context), EDX_reg(context) )
* This will generate a linear pointer in all three cases:
* This will generate a linear pointer in all three cases:
...
...
misc/comm.c
View file @
217a682b
...
@@ -508,7 +508,7 @@ INT16 WINAPI OpenComm16(LPCSTR device,UINT16 cbInQueue,UINT16 cbOutQueue)
...
@@ -508,7 +508,7 @@ INT16 WINAPI OpenComm16(LPCSTR device,UINT16 cbInQueue,UINT16 cbOutQueue)
/* not enough memory */
/* not enough memory */
tcsetattr
(
COM
[
port
].
fd
,
TCSANOW
,
&
m_stat
[
port
]);
tcsetattr
(
COM
[
port
].
fd
,
TCSANOW
,
&
m_stat
[
port
]);
close
(
COM
[
port
].
fd
);
close
(
COM
[
port
].
fd
);
ERR
(
"out of memory"
);
ERR
(
"out of memory
\n
"
);
return
IE_MEMORY
;
return
IE_MEMORY
;
}
}
...
...
misc/version.c
View file @
217a682b
...
@@ -63,7 +63,7 @@ static VERSION_DATA VersionData[NB_WINDOWS_VERSIONS] =
...
@@ -63,7 +63,7 @@ static VERSION_DATA VersionData[NB_WINDOWS_VERSIONS] =
},
},
/* WIN98 */
/* WIN98 */
{
{
0x070
05F03
,
/* FIXME: need DOS value from real Win98 */
0x070
A5F03
,
0xC0000A04
,
0xC0000A04
,
{
{
sizeof
(
OSVERSIONINFOA
),
4
,
10
,
0x40A07CE
,
sizeof
(
OSVERSIONINFOA
),
4
,
10
,
0x40A07CE
,
...
...
msdos/int2f.c
View file @
217a682b
...
@@ -82,7 +82,7 @@ void WINAPI INT_Int2fHandler( CONTEXT86 *context )
...
@@ -82,7 +82,7 @@ void WINAPI INT_Int2fHandler( CONTEXT86 *context )
DI_reg
(
context
)
=
0x0000
;
DI_reg
(
context
)
=
0x0000
;
break
;
break
;
case
0x08
:
case
0x08
:
FIXME
(
"No real-mode handler for errors yet! (bye!)"
);
FIXME
(
"No real-mode handler for errors yet! (bye!)
\n
"
);
break
;
break
;
default:
default:
INT_BARF
(
context
,
0x2f
);
INT_BARF
(
context
,
0x2f
);
...
...
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