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
99f54153
Commit
99f54153
authored
Aug 06, 2001
by
Marcus Meissner
Committed by
Alexandre Julliard
Aug 06, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SetCommConfig has 3 arguments, not 2.
parent
b37b863b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
comm.c
dlls/kernel/comm.c
+3
-2
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
winbase.h
include/winbase.h
+1
-1
No files found.
dlls/kernel/comm.c
View file @
99f54153
...
...
@@ -1824,8 +1824,9 @@ BOOL WINAPI GetCommConfig(
* True on success, false if the handle was bad is not a communications device.
*/
BOOL
WINAPI
SetCommConfig
(
HANDLE
hFile
,
/* [in] The communications device. */
LPCOMMCONFIG
lpCommConfig
)
/* [in] The desired configuration. */
HANDLE
hFile
,
/* [in] The communications device. */
LPCOMMCONFIG
lpCommConfig
,
/* [in] The desired configuration. */
DWORD
dwSize
)
/* [in] size of the lpCommConfig struct */
{
TRACE
(
"(%x %p)
\n
"
,
hFile
,
lpCommConfig
);
return
SetCommState
(
hFile
,
&
lpCommConfig
->
dcb
);
...
...
dlls/kernel/kernel32.spec
View file @
99f54153
...
...
@@ -660,7 +660,7 @@ debug_channels (comm debugstr dll int resource stress thunk toolhelp win32)
@ stdcall SearchPathA(str str str long ptr ptr) SearchPathA
@ stdcall SearchPathW(wstr wstr wstr long ptr ptr) SearchPathW
@ stdcall SetCommBreak(long) SetCommBreak
@ stdcall SetCommConfig(long ptr) SetCommConfig
@ stdcall SetCommConfig(long ptr
long
) SetCommConfig
@ stdcall SetCommMask(long ptr) SetCommMask
@ stdcall SetCommState(long ptr) SetCommState
@ stdcall SetCommTimeouts(long ptr) SetCommTimeouts
...
...
include/winbase.h
View file @
99f54153
...
...
@@ -1546,7 +1546,7 @@ BOOL WINAPI RevertToSelf(void);
DWORD
WINAPI
SearchPathA
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
DWORD
,
LPSTR
,
LPSTR
*
);
DWORD
WINAPI
SearchPathW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
DWORD
,
LPWSTR
,
LPWSTR
*
);
#define SearchPath WINELIB_NAME_AW(SearchPath)
BOOL
WINAPI
SetCommConfig
(
HANDLE
,
LPCOMMCONFIG
);
BOOL
WINAPI
SetCommConfig
(
HANDLE
,
LPCOMMCONFIG
,
DWORD
);
BOOL
WINAPI
SetCommBreak
(
HANDLE
);
BOOL
WINAPI
SetCommMask
(
HANDLE
,
DWORD
);
BOOL
WINAPI
SetCommState
(
HANDLE
,
LPDCB
);
...
...
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