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
7fcae156
Commit
7fcae156
authored
Jul 31, 2002
by
Eric Pouech
Committed by
Alexandre Julliard
Jul 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made the calls to (Read|Write)Console through a function pointer to
ease up ntdll/kernel separation.
parent
3d4d7e01
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
2 deletions
+38
-2
file.c
files/file.c
+38
-2
No files found.
files/file.c
View file @
7fcae156
...
...
@@ -364,6 +364,42 @@ static HANDLE FILE_OpenConsole( BOOL output, DWORD access, DWORD sharing, LPSECU
return
ret
;
}
/* FIXME: those routines defined as pointers are needed, because this file is
* currently compiled into NTDLL whereas it belongs to kernel32.
* this shall go away once all the DLL separation process is done
*/
typedef
BOOL
(
WINAPI
*
pRW
)(
HANDLE
,
const
void
*
,
DWORD
,
DWORD
*
,
void
*
);
static
BOOL
FILE_ReadConsole
(
HANDLE
hCon
,
void
*
buf
,
DWORD
nb
,
DWORD
*
nr
,
void
*
p
)
{
static
HANDLE
hKernel
/* = 0 */
;
static
pRW
pReadConsole
/* = 0 */
;
if
((
!
hKernel
&&
!
(
hKernel
=
LoadLibraryA
(
"kernel32"
)))
||
(
!
pReadConsole
&&
!
(
pReadConsole
=
GetProcAddress
(
hKernel
,
"ReadConsoleA"
))))
{
*
nr
=
0
;
return
0
;
}
return
(
pReadConsole
)(
hCon
,
buf
,
nb
,
nr
,
p
);
}
static
BOOL
FILE_WriteConsole
(
HANDLE
hCon
,
const
void
*
buf
,
DWORD
nb
,
DWORD
*
nr
,
void
*
p
)
{
static
HANDLE
hKernel
/* = 0 */
;
static
pRW
pWriteConsole
/* = 0 */
;
if
((
!
hKernel
&&
!
(
hKernel
=
LoadLibraryA
(
"kernel32"
)))
||
(
!
pWriteConsole
&&
!
(
pWriteConsole
=
GetProcAddress
(
hKernel
,
"WriteConsoleA"
))))
{
*
nr
=
0
;
return
0
;
}
return
(
pWriteConsole
)(
hCon
,
buf
,
nb
,
nr
,
p
);
}
/* end of FIXME */
/***********************************************************************
* FILE_CreateFile
...
...
@@ -1640,7 +1676,7 @@ BOOL WINAPI ReadFile( HANDLE hFile, LPVOID buffer, DWORD bytesToRead,
case
FD_TYPE_SMB
:
return
SMB_ReadFile
(
hFile
,
buffer
,
bytesToRead
,
bytesRead
,
NULL
);
case
FD_TYPE_CONSOLE
:
return
ReadConsoleA
(
hFile
,
buffer
,
bytesToRead
,
bytesRead
,
NULL
);
return
FILE_ReadConsole
(
hFile
,
buffer
,
bytesToRead
,
bytesRead
,
NULL
);
default:
/* normal unix files */
...
...
@@ -1840,7 +1876,7 @@ BOOL WINAPI WriteFile( HANDLE hFile, LPCVOID buffer, DWORD bytesToWrite,
case
FD_TYPE_CONSOLE
:
TRACE
(
"%d %s %ld %p %p
\n
"
,
hFile
,
debugstr_an
(
buffer
,
bytesToWrite
),
bytesToWrite
,
bytesWritten
,
overlapped
);
return
WriteConsoleA
(
hFile
,
buffer
,
bytesToWrite
,
bytesWritten
,
NULL
);
return
FILE_WriteConsole
(
hFile
,
buffer
,
bytesToWrite
,
bytesWritten
,
NULL
);
default:
if
(
unix_handle
==
-
1
)
return
FALSE
;
...
...
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