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
c77ff5ef
Commit
c77ff5ef
authored
Apr 29, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Apr 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issues reported by winapi_check.
parent
5dadbf32
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
8 deletions
+20
-8
dpclassfactory.c
dlls/dplayx/dpclassfactory.c
+1
-1
shell32.spec
dlls/shell32/shell32.spec
+2
-2
urlmon.spec
dlls/urlmon/urlmon.spec
+1
-1
urlmon_main.c
dlls/urlmon/urlmon_main.c
+10
-0
comm.c
misc/comm.c
+6
-4
No files found.
dlls/dplayx/dpclassfactory.c
View file @
c77ff5ef
...
...
@@ -79,7 +79,7 @@ static IClassFactoryImpl DP_and_DPL_CF = {&DP_and_DPL_Vtbl, 1 };
/*******************************************************************************
* DP
_and_DPL
_DllGetClassObject [DPLAYX.?]
* DP
LAYX
_DllGetClassObject [DPLAYX.?]
* Retrieves DP or DPL class object from a DLL object
*
* NOTES
...
...
dlls/shell32/shell32.spec
View file @
c77ff5ef
...
...
@@ -194,8 +194,8 @@ import ole32.dll
179 stub SHGetNewLinkInfoA
180 stub SHGetNewLinkInfoW
181 stdcall RegisterShellHook(long long) RegisterShellHook
182
cdecl ShellMessageBoxW(long long long str long
long) ShellMessageBoxW
183
cdecl ShellMessageBoxA(long long long str long
long) ShellMessageBoxA
182
varargs ShellMessageBoxW(long long long str
long) ShellMessageBoxW
183
varargs ShellMessageBoxA(long long long str
long) ShellMessageBoxA
184 stdcall ArrangeWindows(long long long long long) ArrangeWindows
185 stub SHHandleDiskFull
186 stub ExtractAssociatedIconExW # exported by name
...
...
dlls/urlmon/urlmon.spec
View file @
c77ff5ef
...
...
@@ -29,7 +29,7 @@ import ole32.dll
@ stdcall DllGetClassObject(ptr ptr ptr) URLMON_DllGetClassObject
@ stdcall DllInstall(long ptr) URLMON_DllInstall
@ stdcall DllRegisterServer() URLMON_DllRegisterServer
@ st
ub
DllRegisterServerEx
@ st
dcall DllRegisterServerEx() URLMON_
DllRegisterServerEx
@ stdcall DllUnregisterServer() URLMON_DllUnregisterServer
@ stub Extract
@ stub FaultInIEFeature
...
...
dlls/urlmon/urlmon_main.c
View file @
c77ff5ef
...
...
@@ -57,6 +57,16 @@ HRESULT WINAPI URLMON_DllRegisterServer(void)
}
/***********************************************************************
* DllRegisterServerEx (URLMON.@)
*/
HRESULT
WINAPI
URLMON_DllRegisterServerEx
(
void
)
{
FIXME
(
"(void): stub
\n
"
);
return
E_FAIL
;
}
/***********************************************************************
* DllUnregisterServer (URLMON.@)
*/
HRESULT
WINAPI
URLMON_DllUnregisterServer
(
void
)
...
...
misc/comm.c
View file @
c77ff5ef
...
...
@@ -1189,10 +1189,11 @@ INT16 WINAPI GetCommState16(INT16 cid, LPDCB16 lpdcb)
else
lpdcb
->
fParity
=
FALSE
;
#ifdef CMSPAR
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
|
CMSPAR
))
{
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
|
CMSPAR
))
#else
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
))
{
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
))
#endif
{
case
0
:
lpdcb
->
Parity
=
NOPARITY
;
break
;
...
...
@@ -2378,10 +2379,11 @@ BOOL WINAPI GetCommState(INT handle, LPDCB lpdcb)
else
lpdcb
->
fParity
=
FALSE
;
#ifdef CMSPAR
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
|
CMSPAR
))
{
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
|
CMSPAR
))
#else
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
))
{
switch
(
port
.
c_cflag
&
(
PARENB
|
PARODD
))
#endif
{
case
0
:
lpdcb
->
Parity
=
NOPARITY
;
break
;
...
...
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