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
98fde73f
Commit
98fde73f
authored
Mar 24, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Mar 24, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues reported by winapi_check.
parent
d628f436
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
20 additions
and
20 deletions
+20
-20
crtdll.spec
dlls/crtdll/crtdll.spec
+1
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
painting.c
graphics/painting.c
+5
-5
ddeml.h
include/ddeml.h
+2
-2
wingdi.h
include/wingdi.h
+1
-1
kernel32.spec
relay32/kernel32.spec
+1
-1
critsection.c
scheduler/critsection.c
+5
-5
newfns.c
win32/newfns.c
+2
-2
painting.c
windows/painting.c
+1
-1
No files found.
dlls/crtdll/crtdll.spec
View file @
98fde73f
...
...
@@ -485,7 +485,7 @@ init CRTDLL_Init
@ cdecl strtol(str ptr long) strtol
@ cdecl strtoul(str ptr long) strtoul
@ cdecl strxfrm(ptr str long) strxfrm
@ varargs swprintf() wsprintfW
@ varargs swprintf(
wstr wstr
) wsprintfW
@ stub swscanf
@ cdecl system(str) CRTDLL_system
@ cdecl tan(double) tan
...
...
dlls/ntdll/ntdll.spec
View file @
98fde73f
...
...
@@ -915,7 +915,7 @@ type win32
@ stub pow
@ stub qsort
@ stub sin
@ varargs sprintf() wsprintfA
@ varargs sprintf(
str str
) wsprintfA
@ stub sqrt
@ varargs sscanf() sscanf
@ cdecl strcat(str str) strcat
...
...
@@ -931,7 +931,7 @@ type win32
@ cdecl strrchr(str long) strrchr
@ cdecl strspn(str str) strspn
@ cdecl strstr(str str) strstr
@ varargs swprintf() wsprintfW
@ varargs swprintf(
wstr wstr
) wsprintfW
@ stub tan
@ cdecl tolower(long) tolower
@ cdecl toupper(long) toupper
...
...
graphics/painting.c
View file @
98fde73f
...
...
@@ -402,7 +402,7 @@ COLORREF WINAPI GetPixel( HDC hdc, INT x, INT y )
* Success: Pixel format index closest to given format
* Failure: 0
*/
INT
WINAPI
ChoosePixelFormat
(
HDC
hdc
,
const
PIXELFORMATDESCRIPTOR
*
ppfd
)
INT
WINAPI
ChoosePixelFormat
(
HDC
hdc
,
const
LPPIXELFORMATDESCRIPTOR
ppfd
)
{
FIXME
(
"(%d,%p): stub
\n
"
,
hdc
,
ppfd
);
return
1
;
...
...
@@ -420,8 +420,8 @@ INT WINAPI ChoosePixelFormat( HDC hdc, const PIXELFORMATDESCRIPTOR* ppfd )
*
* RETURNS STD
*/
BOOL
WINAPI
SetPixelFormat
(
HDC
hdc
,
int
iPixelFormat
,
const
PIXELFORMATDESCRIPTOR
*
ppfd
)
BOOL
WINAPI
SetPixelFormat
(
HDC
hdc
,
INT
iPixelFormat
,
const
PIXELFORMATDESCRIPTOR
*
ppfd
)
{
FIXME
(
"(%d,%d,%p): stub
\n
"
,
hdc
,
iPixelFormat
,
ppfd
);
return
TRUE
;
...
...
@@ -439,7 +439,7 @@ BOOL WINAPI SetPixelFormat( HDC hdc, int iPixelFormat,
* Success: Currently selected pixel format
* Failure: 0
*/
int
WINAPI
GetPixelFormat
(
HDC
hdc
)
INT
WINAPI
GetPixelFormat
(
HDC
hdc
)
{
FIXME
(
"(%d): stub
\n
"
,
hdc
);
return
1
;
...
...
@@ -460,7 +460,7 @@ int WINAPI GetPixelFormat( HDC hdc )
* Success: Maximum pixel format index of the device context
* Failure: 0
*/
int
WINAPI
DescribePixelFormat
(
HDC
hdc
,
int
iPixelFormat
,
UINT
nBytes
,
INT
WINAPI
DescribePixelFormat
(
HDC
hdc
,
INT
iPixelFormat
,
UINT
nBytes
,
LPPIXELFORMATDESCRIPTOR
ppfd
)
{
FIXME
(
"(%d,%d,%d,%p): stub
\n
"
,
hdc
,
iPixelFormat
,
nBytes
,
ppfd
);
...
...
include/ddeml.h
View file @
98fde73f
...
...
@@ -339,8 +339,8 @@ BOOL16 WINAPI DdeUnaccessData16(HDDEDATA);
BOOL
WINAPI
DdeUnaccessData
(
HDDEDATA
);
BOOL16
WINAPI
DdeEnableCallback16
(
DWORD
,
HCONV
,
UINT16
);
BOOL
WINAPI
DdeEnableCallback
(
DWORD
,
HCONV
,
UINT
);
int
WINAPI
DdeCmpStringHandles16
(
HSZ
,
HSZ
);
int
WINAPI
DdeCmpStringHandles
(
HSZ
,
HSZ
);
INT16
WINAPI
DdeCmpStringHandles16
(
HSZ
,
HSZ
);
INT
WINAPI
DdeCmpStringHandles
(
HSZ
,
HSZ
);
HDDEDATA
WINAPI
DdeNameService16
(
DWORD
,
HSZ
,
HSZ
,
UINT16
);
HDDEDATA
WINAPI
DdeNameService
(
DWORD
,
HSZ
,
HSZ
,
UINT
);
...
...
include/wingdi.h
View file @
98fde73f
...
...
@@ -3062,7 +3062,7 @@ BOOL WINAPI Arc(HDC,INT,INT,INT,INT,INT,INT,INT,INT);
BOOL
WINAPI
ArcTo
(
HDC
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
);
BOOL
WINAPI
BeginPath
(
HDC
);
BOOL
WINAPI
BitBlt
(
HDC
,
INT
,
INT
,
INT
,
INT
,
HDC
,
INT
,
INT
,
DWORD
);
INT
WINAPI
ChoosePixelFormat
(
HDC
,
const
PIXELFORMATDESCRIPTOR
*
);
INT
WINAPI
ChoosePixelFormat
(
HDC
,
const
LPPIXELFORMATDESCRIPTOR
);
BOOL
WINAPI
Chord
(
HDC
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
);
HENHMETAFILE
WINAPI
CloseEnhMetaFile
(
HDC
);
BOOL
WINAPI
CloseFigure
(
HDC
);
...
...
relay32/kernel32.spec
View file @
98fde73f
...
...
@@ -29,7 +29,7 @@ import ntdll.dll
12 stdcall k32OemToCharA(ptr ptr) OemToCharA
13 stdcall k32OemToCharBuffA(ptr ptr long) OemToCharBuffA
14 stdcall k32LoadStringA(long long ptr long) LoadStringA
15 varargs k32wsprintfA() wsprintfA
15 varargs k32wsprintfA(
str str
) wsprintfA
16 stdcall k32wvsprintfA(ptr str ptr) wvsprintfA
17 register CommonUnimpStub() CommonUnimpStub
18 stdcall GetProcessDword(long long) GetProcessDword
...
...
scheduler/critsection.c
View file @
98fde73f
...
...
@@ -199,7 +199,7 @@ void WINAPI UninitializeCriticalSection( CRITICAL_SECTION *crit )
#ifdef __i386__
/* PVOID WINAPI InterlockedCompareExchange( PVOID *dest, PVOID xchg, PVOID compare ); */
PVOID
WINAPI
InterlockedCompareExchange
(
PVOID
*
dest
,
PVOID
xchg
,
PVOID
compare
);
__ASM_GLOBAL_FUNC
(
InterlockedCompareExchange
,
"movl 12(%esp),%eax
\n\t
"
"movl 8(%esp),%ecx
\n\t
"
...
...
@@ -207,21 +207,21 @@ __ASM_GLOBAL_FUNC(InterlockedCompareExchange,
"lock; cmpxchgl %ecx,(%edx)
\n\t
"
"ret $12"
);
/* LONG WINAPI InterlockedExchange( PLONG dest, LONG val ); */
LONG
WINAPI
InterlockedExchange
(
PLONG
dest
,
LONG
val
);
__ASM_GLOBAL_FUNC
(
InterlockedExchange
,
"movl 8(%esp),%eax
\n\t
"
"movl 4(%esp),%edx
\n\t
"
"lock; xchgl %eax,(%edx)
\n\t
"
"ret $8"
);
/* LONG WINAPI InterlockedExchangeAdd( PLONG dest, LONG incr ); */
LONG
WINAPI
InterlockedExchangeAdd
(
PLONG
dest
,
LONG
incr
);
__ASM_GLOBAL_FUNC
(
InterlockedExchangeAdd
,
"movl 8(%esp),%eax
\n\t
"
"movl 4(%esp),%edx
\n\t
"
"lock; xaddl %eax,(%edx)
\n\t
"
"ret $8"
);
/* LONG WINAPI InterlockedIncrement( PLONG dest ); */
LONG
WINAPI
InterlockedIncrement
(
PLONG
dest
);
__ASM_GLOBAL_FUNC
(
InterlockedIncrement
,
"movl 4(%esp),%edx
\n\t
"
"movl $1,%eax
\n\t
"
...
...
@@ -229,7 +229,7 @@ __ASM_GLOBAL_FUNC(InterlockedIncrement,
"incl %eax
\n\t
"
"ret $4"
);
/* LONG WINAPI InterlockedDecrement( PLONG dest ); */
LONG
WINAPI
InterlockedDecrement
(
PLONG
dest
);
__ASM_GLOBAL_FUNC
(
InterlockedDecrement
,
"movl 4(%esp),%edx
\n\t
"
"movl $-1,%eax
\n\t
"
...
...
win32/newfns.c
View file @
98fde73f
...
...
@@ -312,8 +312,8 @@ HANDLE WINAPI OpenDesktopA( LPCSTR lpszDesktop, DWORD dwFlags,
}
BOOL
WINAPI
SetUserObjectInformationA
(
HANDLE
hObj
,
int
nIndex
,
LPVOID
pvInfo
,
DWORD
nLength
)
BOOL
WINAPI
SetUserObjectInformationA
(
HANDLE
hObj
,
INT
nIndex
,
LPVOID
pvInfo
,
DWORD
nLength
)
{
FIXME
(
"(%x,%d,%p,%lx): stub
\n
"
,
hObj
,
nIndex
,
pvInfo
,
nLength
);
return
TRUE
;
...
...
windows/painting.c
View file @
98fde73f
...
...
@@ -1395,7 +1395,7 @@ BOOL16 WINAPI DrawAnimatedRects16( HWND16 hwnd, INT16 idAni,
/**********************************************************************
* DrawAnimatedRects (USER32.153)
*/
BOOL
WINAPI
DrawAnimatedRects
(
HWND
hwnd
,
int
idAni
,
BOOL
WINAPI
DrawAnimatedRects
(
HWND
hwnd
,
INT
idAni
,
const
RECT
*
lprcFrom
,
const
RECT
*
lprcTo
)
{
...
...
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