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
94113fa1
Commit
94113fa1
authored
Nov 30, 1998
by
Uwe Bonnes
Committed by
Alexandre Julliard
Nov 30, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- fixed a minimal error in GetCommMask definition.
- adds stubs for GetCommModemStatus and WaitCommEvent.
parent
79f1638d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
+20
-3
comm.c
misc/comm.c
+18
-1
kernel32.spec
relay32/kernel32.spec
+2
-2
No files found.
misc/comm.c
View file @
94113fa1
...
...
@@ -953,7 +953,7 @@ BOOL32 WINAPI SetupComm( HANDLE32 hFile, DWORD insize, DWORD outsize)
/*****************************************************************************
* GetCommMask (KERNEL32.156)
*/
BOOL32
WINAPI
GetCommMask
(
INT
32
fd
,
LPDWORD
evtmask
)
BOOL32
WINAPI
GetCommMask
(
HANDLE
32
fd
,
LPDWORD
evtmask
)
{
TRACE
(
comm
,
"fd %d, mask %p
\n
"
,
fd
,
evtmask
);
*
evtmask
=
eventmask
;
...
...
@@ -1819,3 +1819,20 @@ BOOL16 WINAPI EnableCommNotification( INT16 fd, HWND16 hwnd,
return
TRUE
;
}
/***********************************************************************
* GetCommModemStatus (KERNEL32.285)
*/
BOOL32
WINAPI
GetCommModemStatus
(
HANDLE32
hFile
,
LPDWORD
lpModemStat
)
{
FIXME
(
comm
,
"(%d %p)
\n
"
,
hFile
,
lpModemStat
);
return
TRUE
;
}
/***********************************************************************
* WaitCommEvent (KERNEL32.719)
*/
BOOL32
WINAPI
WaitCommEvent
(
HANDLE32
hFile
,
LPDWORD
eventmask
,
LPOVERLAPPED
overlapped
)
{
FIXME
(
comm
,
"(%d %p %p )
\n
"
,
hFile
,
eventmask
,
overlapped
);
return
TRUE
;
}
relay32/kernel32.spec
View file @
94113fa1
...
...
@@ -300,7 +300,7 @@ init MAIN_KernelInit
282 stdcall GetCPInfo(long ptr) GetCPInfo
283 stub GetCommConfig
284 stdcall GetCommMask(long ptr) GetCommMask
285 st
ub
GetCommModemStatus
285 st
dcall GetCommModemStatus(long ptr)
GetCommModemStatus
286 stub GetCommProperties
287 stdcall GetCommState(long ptr) GetCommState32
288 stdcall GetCommTimeouts(long ptr) GetCommTimeouts
...
...
@@ -734,7 +734,7 @@ init MAIN_KernelInit
716 stdcall VirtualQuery(ptr ptr long) VirtualQuery
717 stdcall VirtualQueryEx(long ptr ptr long) VirtualQueryEx
718 stdcall VirtualUnlock(ptr long) VirtualUnlock
719 st
ub
WaitCommEvent
719 st
dcall WaitCommEvent(long ptr ptr)
WaitCommEvent
720 stdcall WaitForDebugEvent(ptr long) WaitForDebugEvent
721 stdcall WaitForMultipleObjects(long ptr long long) WaitForMultipleObjects
722 stdcall WaitForMultipleObjectsEx(long ptr long long long) WaitForMultipleObjectsEx
...
...
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