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
7271ed55
Commit
7271ed55
authored
Dec 12, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 12, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Remove _hread16() as it is not used. Move _hwrite16() next to the…
kernel32: Remove _hread16() as it is not used. Move _hwrite16() next to the other related functions.
parent
8dbc8d3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
18 deletions
+9
-18
file16.c
dlls/kernel32/file16.c
+9
-18
No files found.
dlls/kernel32/file16.c
View file @
7271ed55
...
...
@@ -336,6 +336,15 @@ UINT16 WINAPI WIN16_lread( HFILE16 hFile, SEGPTR buffer, UINT16 count )
/***********************************************************************
* _hwrite (KERNEL.350)
*/
LONG
WINAPI
_hwrite16
(
HFILE16
hFile
,
LPCSTR
buffer
,
LONG
count
)
{
return
_hwrite
(
(
HFILE
)
DosFileHandleToWin32Handle
(
hFile
),
buffer
,
count
);
}
/***********************************************************************
* GetTempDrive (KERNEL.92)
* A closer look at krnl386.exe shows what the SDK doesn't mention:
*
...
...
@@ -531,24 +540,6 @@ UINT16 WINAPI SetHandleCount16( UINT16 count )
/***********************************************************************
* _hread16 (KERNEL.349)
*/
LONG
WINAPI
_hread16
(
HFILE16
hFile
,
LPVOID
buffer
,
LONG
count
)
{
return
_lread
(
(
HFILE
)
DosFileHandleToWin32Handle
(
hFile
),
buffer
,
count
);
}
/***********************************************************************
* _hwrite (KERNEL.350)
*/
LONG
WINAPI
_hwrite16
(
HFILE16
hFile
,
LPCSTR
buffer
,
LONG
count
)
{
return
_hwrite
(
(
HFILE
)
DosFileHandleToWin32Handle
(
hFile
),
buffer
,
count
);
}
/***********************************************************************
* WritePrivateProfileStruct (KERNEL.406)
*/
BOOL16
WINAPI
WritePrivateProfileStruct16
(
LPCSTR
section
,
LPCSTR
key
,
...
...
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