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
7980a50c
Commit
7980a50c
authored
Jun 07, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jun 07, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issues found by winapi_check.
parent
d18837b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
5 deletions
+35
-5
proxyodbc.c
dlls/odbc32/proxyodbc.c
+0
-0
moniker.c
dlls/ole32/moniker.c
+1
-1
shellstring.c
dlls/shell32/shellstring.c
+2
-2
umon.c
dlls/urlmon/umon.c
+1
-1
urlmon.h
include/urlmon.h
+1
-1
critsection.c
scheduler/critsection.c
+30
-0
No files found.
dlls/odbc32/proxyodbc.c
View file @
7980a50c
This diff is collapsed.
Click to expand it.
dlls/ole32/moniker.c
View file @
7980a50c
...
...
@@ -495,7 +495,7 @@ HRESULT WINAPI OleRun(LPUNKNOWN pUnknown)
/******************************************************************************
* MkParseDisplayName [OLE32.81]
*/
HRESULT
MkParseDisplayName
(
LPBC
pbc
,
LPCOLESTR
szUserName
,
HRESULT
WINAPI
MkParseDisplayName
(
LPBC
pbc
,
LPCOLESTR
szUserName
,
LPDWORD
pchEaten
,
LPMONIKER
*
ppmk
)
{
FIXME
(
"(%p, %s, %p, %p): stub.
\n
"
,
pbc
,
debugstr_w
(
szUserName
),
pchEaten
,
*
ppmk
);
...
...
dlls/shell32/shellstring.c
View file @
7980a50c
...
...
@@ -291,7 +291,7 @@ LPWSTR WINAPI StrDupW (LPCWSTR lpSrc)
/*************************************************************************
* StrCSpnA [SHLWAPI]
*/
int
StrCSpnA
(
LPCSTR
lpStr
,
LPCSTR
lpSet
)
int
WINAPI
StrCSpnA
(
LPCSTR
lpStr
,
LPCSTR
lpSet
)
{
int
i
,
j
,
pos
=
strlen
(
lpStr
);
...
...
@@ -315,7 +315,7 @@ int StrCSpnA (LPCSTR lpStr, LPCSTR lpSet)
/*************************************************************************
* StrCSpnW [SHLWAPI]
*/
int
StrCSpnW
(
LPCWSTR
lpStr
,
LPCWSTR
lpSet
)
int
WINAPI
StrCSpnW
(
LPCWSTR
lpStr
,
LPCWSTR
lpSet
)
{
int
i
,
j
,
pos
=
lstrlenW
(
lpStr
);
...
...
dlls/urlmon/umon.c
View file @
7980a50c
...
...
@@ -26,7 +26,7 @@ DEFAULT_DEBUG_CHANNEL(win32);
* MK_E_SYNTAX not a valid url
*
*/
HRESULT
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LPWSTR
szURL
,
IMoniker
**
ppmk
)
HRESULT
WINAPI
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LPWSTR
szURL
,
IMoniker
**
ppmk
)
{
TRACE
(
"
\n
"
);
...
...
include/urlmon.h
View file @
7980a50c
...
...
@@ -5,7 +5,7 @@
#ifndef __WINE_URLMON_H
#define __WINE_URLMON_H
HRESULT
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LPWSTR
szURL
,
IMoniker
**
ppmk
);
HRESULT
WINAPI
CreateURLMoniker
(
IMoniker
*
pmkContext
,
LPWSTR
szURL
,
IMoniker
**
ppmk
);
#endif
/* __WINE_URLMON_H */
scheduler/critsection.c
View file @
7980a50c
...
...
@@ -184,6 +184,9 @@ void WINAPI UninitializeCriticalSection( CRITICAL_SECTION *crit )
#ifdef __i386__
/***********************************************************************
* InterlockCompareExchange (KERNEL32.@)
*/
PVOID
WINAPI
InterlockedCompareExchange
(
PVOID
*
dest
,
PVOID
xchg
,
PVOID
compare
);
__ASM_GLOBAL_FUNC
(
InterlockedCompareExchange
,
"movl 12(%esp),%eax
\n\t
"
...
...
@@ -192,6 +195,9 @@ __ASM_GLOBAL_FUNC(InterlockedCompareExchange,
"lock; cmpxchgl %ecx,(%edx)
\n\t
"
"ret $12"
);
/***********************************************************************
* InterlockedExchange (KERNEL32.@)
*/
LONG
WINAPI
InterlockedExchange
(
PLONG
dest
,
LONG
val
);
__ASM_GLOBAL_FUNC
(
InterlockedExchange
,
"movl 8(%esp),%eax
\n\t
"
...
...
@@ -199,6 +205,9 @@ __ASM_GLOBAL_FUNC(InterlockedExchange,
"lock; xchgl %eax,(%edx)
\n\t
"
"ret $8"
);
/***********************************************************************
* InterlockedExchangeAdd (KERNEL32.@)
*/
LONG
WINAPI
InterlockedExchangeAdd
(
PLONG
dest
,
LONG
incr
);
__ASM_GLOBAL_FUNC
(
InterlockedExchangeAdd
,
"movl 8(%esp),%eax
\n\t
"
...
...
@@ -206,6 +215,9 @@ __ASM_GLOBAL_FUNC(InterlockedExchangeAdd,
"lock; xaddl %eax,(%edx)
\n\t
"
"ret $8"
);
/***********************************************************************
* InterlockedIncrement (KERNEL32.@)
*/
LONG
WINAPI
InterlockedIncrement
(
PLONG
dest
);
__ASM_GLOBAL_FUNC
(
InterlockedIncrement
,
"movl 4(%esp),%edx
\n\t
"
...
...
@@ -214,6 +226,9 @@ __ASM_GLOBAL_FUNC(InterlockedIncrement,
"incl %eax
\n\t
"
"ret $4"
);
/***********************************************************************
* InterlockDecrement (KERNEL32.@)
*/
LONG
WINAPI
InterlockedDecrement
(
PLONG
dest
);
__ASM_GLOBAL_FUNC
(
InterlockedDecrement
,
"movl 4(%esp),%edx
\n\t
"
...
...
@@ -237,6 +252,9 @@ __ASM_GLOBAL_FUNC(InterlockedDecrement,
#include <synch.h>
static
lwp_mutex_t
interlocked_mutex
=
DEFAULTMUTEX
;
/***********************************************************************
* InterlockedCompareExchange (KERNEL32.@)
*/
PVOID
WINAPI
InterlockedCompareExchange
(
PVOID
*
dest
,
PVOID
xchg
,
PVOID
compare
)
{
_lwp_mutex_lock
(
&
interlocked_mutex
);
...
...
@@ -250,6 +268,9 @@ PVOID WINAPI InterlockedCompareExchange( PVOID *dest, PVOID xchg, PVOID compare
return
compare
;
}
/***********************************************************************
* InterlockedExchange (KERNEL32.@)
*/
LONG
WINAPI
InterlockedExchange
(
PLONG
dest
,
LONG
val
)
{
LONG
retv
;
...
...
@@ -262,6 +283,9 @@ LONG WINAPI InterlockedExchange( PLONG dest, LONG val )
return
retv
;
}
/***********************************************************************
* InterlockedExchangeAdd (KERNEL32.@)
*/
LONG
WINAPI
InterlockedExchangeAdd
(
PLONG
dest
,
LONG
incr
)
{
LONG
retv
;
...
...
@@ -274,6 +298,9 @@ LONG WINAPI InterlockedExchangeAdd( PLONG dest, LONG incr )
return
retv
;
}
/***********************************************************************
* InterlockedIncrement (KERNEL32.@)
*/
LONG
WINAPI
InterlockedIncrement
(
PLONG
dest
)
{
LONG
retv
;
...
...
@@ -285,6 +312,9 @@ LONG WINAPI InterlockedIncrement( PLONG dest )
return
retv
;
}
/***********************************************************************
* InterlockedDecrement (KERNEL32.@)
*/
LONG
WINAPI
InterlockedDecrement
(
PLONG
dest
)
{
LONG
retv
;
...
...
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