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
a62a26ce
Commit
a62a26ce
authored
Sep 09, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Sep 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
442f5f56
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
35 additions
and
17 deletions
+35
-17
gdi16.c
dlls/gdi/gdi16.c
+4
-2
signal_i386.c
dlls/ntdll/signal_i386.c
+4
-1
reg.c
dlls/shlwapi/reg.c
+2
-2
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
clipping.c
objects/clipping.c
+10
-5
dc.c
objects/dc.c
+8
-4
dcvalues.c
objects/dcvalues.c
+2
-1
metafile.c
objects/metafile.c
+1
-0
palette.c
objects/palette.c
+1
-0
queue.c
windows/queue.c
+2
-1
No files found.
dlls/gdi/gdi16.c
View file @
a62a26ce
...
...
@@ -1595,7 +1595,8 @@ HPALETTE16 WINAPI CreatePalette16( const LOGPALETTE* palette )
/***********************************************************************
* GDISelectPalette (GDI.361)
* GDISelectPalette (GDI.361)
* GDISelectPalette16 (GDI32.@)
*/
HPALETTE16
WINAPI
GDISelectPalette16
(
HDC16
hdc
,
HPALETTE16
hpalette
,
WORD
wBkg
)
{
...
...
@@ -1604,7 +1605,8 @@ HPALETTE16 WINAPI GDISelectPalette16( HDC16 hdc, HPALETTE16 hpalette, WORD wBkg
/***********************************************************************
* GDIRealizePalette (GDI.362)
* GDIRealizePalette (GDI.362)
* GDIRealizePalette16 (GDI32.@)
*/
UINT16
WINAPI
GDIRealizePalette16
(
HDC16
hdc
)
{
...
...
dlls/ntdll/signal_i386.c
View file @
a62a26ce
...
...
@@ -1177,7 +1177,7 @@ void SIGNAL_Reset(void)
#ifdef __HAVE_VM86
/**********************************************************************
* __wine_enter_vm86
* __wine_enter_vm86
(NTDLL.@)
*
* Enter vm86 mode with the specified register context.
*/
...
...
@@ -1255,6 +1255,9 @@ cancel_vm86:
}
#else
/* __HAVE_VM86 */
/**********************************************************************
* __wine_enter_vm86 (NTDLL.@)
*/
void
__wine_enter_vm86
(
CONTEXT
*
context
)
{
MESSAGE
(
"vm86 mode not supported on this platform
\n
"
);
...
...
dlls/shlwapi/reg.c
View file @
a62a26ce
...
...
@@ -1633,7 +1633,7 @@ BOOL WINAPI SHLWAPI_323(LPCWSTR lpszSubKey)
* NOTES
* The base path for the key is "MIME\Database\Content Type\"
*/
BOOL
SHLWAPI_328
(
LPCSTR
lpszType
,
LPSTR
lpszBuffer
,
DWORD
dwLen
)
BOOL
WINAPI
SHLWAPI_328
(
LPCSTR
lpszType
,
LPSTR
lpszBuffer
,
DWORD
dwLen
)
{
TRACE
(
"(%s,%p,%ld)
\n
"
,
debugstr_a
(
lpszType
),
lpszBuffer
,
dwLen
);
...
...
@@ -1656,7 +1656,7 @@ BOOL SHLWAPI_328(LPCSTR lpszType, LPSTR lpszBuffer, DWORD dwLen)
*
* Unicode version of SHLWAPI_328.
*/
BOOL
SHLWAPI_329
(
LPCWSTR
lpszType
,
LPWSTR
lpszBuffer
,
DWORD
dwLen
)
BOOL
WINAPI
SHLWAPI_329
(
LPCWSTR
lpszType
,
LPWSTR
lpszBuffer
,
DWORD
dwLen
)
{
TRACE
(
"(%s,%p,%ld)
\n
"
,
debugstr_w
(
lpszType
),
lpszBuffer
,
dwLen
);
...
...
dlls/shlwapi/shlwapi.spec
View file @
a62a26ce
...
...
@@ -326,7 +326,7 @@ init SHLWAPI_LibMain
324 stdcall @(str str) SHLWAPI_324
325 stdcall @(wstr wstr) SHLWAPI_325
326 stdcall @(str) SHLWAPI_326
32
6
stdcall @(wstr) SHLWAPI_327
32
7
stdcall @(wstr) SHLWAPI_327
328 stdcall @(str ptr long) SHLWAPI_328
329 stdcall @(wstr ptr long) SHLWAPI_329
330 stub @
...
...
objects/clipping.c
View file @
a62a26ce
...
...
@@ -117,7 +117,8 @@ INT WINAPI ExtSelectClipRgn( HDC hdc, HRGN hrgn, INT fnMode )
}
/***********************************************************************
* SelectVisRgn (GDI.105)
* SelectVisRgn (GDI.105)
* SelectVisRgn16 (GDI32.@)
*/
INT16
WINAPI
SelectVisRgn16
(
HDC16
hdc
,
HRGN16
hrgn
)
{
...
...
@@ -265,7 +266,8 @@ INT WINAPI IntersectClipRect( HDC hdc, INT left, INT top, INT right, INT bottom
/***********************************************************************
* ExcludeVisRect (GDI.73)
* ExcludeVisRect (GDI.73)
* ExcludeVisRect16 (GDI32.@)
*/
INT16
WINAPI
ExcludeVisRect16
(
HDC16
hdc
,
INT16
left
,
INT16
top
,
INT16
right
,
INT16
bottom
)
...
...
@@ -297,7 +299,8 @@ INT16 WINAPI ExcludeVisRect16( HDC16 hdc, INT16 left, INT16 top,
/***********************************************************************
* IntersectVisRect (GDI.98)
* IntersectVisRect (GDI.98)
* IntersectVisRect16 (GDI32.@)
*/
INT16
WINAPI
IntersectVisRect16
(
HDC16
hdc
,
INT16
left
,
INT16
top
,
INT16
right
,
INT16
bottom
)
...
...
@@ -410,7 +413,8 @@ INT WINAPI GetClipRgn( HDC hdc, HRGN hRgn )
}
/***********************************************************************
* SaveVisRgn (GDI.129)
* SaveVisRgn (GDI.129)
* SaveVisRgn16 (GDI32.@)
*/
HRGN16
WINAPI
SaveVisRgn16
(
HDC16
hdc
)
{
...
...
@@ -450,7 +454,8 @@ HRGN16 WINAPI SaveVisRgn16( HDC16 hdc )
/***********************************************************************
* RestoreVisRgn (GDI.130)
* RestoreVisRgn (GDI.130)
* RestoreVisRgn16 (GDI32.@)
*/
INT16
WINAPI
RestoreVisRgn16
(
HDC16
hdc
)
{
...
...
objects/dc.c
View file @
a62a26ce
...
...
@@ -267,7 +267,8 @@ void DC_UpdateXforms( DC *dc )
/***********************************************************************
* GetDCState (GDI.179)
* GetDCState (GDI.179)
* GetDCState16 (GDI32.@)
*/
HDC16
WINAPI
GetDCState16
(
HDC16
hdc
)
{
...
...
@@ -356,7 +357,8 @@ HDC16 WINAPI GetDCState16( HDC16 hdc )
/***********************************************************************
* SetDCState (GDI.180)
* SetDCState (GDI.180)
* SetDCState16 (GDI32.@)
*/
void
WINAPI
SetDCState16
(
HDC16
hdc
,
HDC16
hdcs
)
{
...
...
@@ -898,7 +900,8 @@ BOOL WINAPI GetDCOrgEx( HDC hDC, LPPOINT lpp )
/***********************************************************************
* SetDCOrg (GDI.117)
* SetDCOrg (GDI.117)
* SetDCOrg16 (GDI32.@)
*/
DWORD
WINAPI
SetDCOrg16
(
HDC16
hdc
,
INT16
x
,
INT16
y
)
{
...
...
@@ -1165,7 +1168,8 @@ DWORD WINAPI GetDCHook16( HDC16 hdc, FARPROC16 *phookProc )
/***********************************************************************
* SetHookFlags (GDI.192)
* SetHookFlags (GDI.192)
* SetHookFlags16 (GDI32.@)
*/
WORD
WINAPI
SetHookFlags16
(
HDC16
hDC
,
WORD
flags
)
{
...
...
objects/dcvalues.c
View file @
a62a26ce
...
...
@@ -398,7 +398,8 @@ BOOL WINAPI GetWindowOrgEx( HDC hdc, LPPOINT pt )
/**** 16-bit functions ***/
/***********************************************************************
* InquireVisRgn (GDI.131)
* InquireVisRgn (GDI.131)
* InquireVisRgn16 (GDI32.@)
*/
HRGN16
WINAPI
InquireVisRgn16
(
HDC16
hdc
)
{
...
...
objects/metafile.c
View file @
a62a26ce
...
...
@@ -182,6 +182,7 @@ static BOOL16 MF_ReleaseMetaHeader16( HMETAFILE16 hmf )
/******************************************************************
* DeleteMetaFile (GDI.127)
* DeleteMetaFile16 (GDI32.@)
*/
BOOL16
WINAPI
DeleteMetaFile16
(
HMETAFILE16
hmf
)
{
...
...
objects/palette.c
View file @
a62a26ce
...
...
@@ -732,6 +732,7 @@ UINT16 WINAPI RealizeDefaultPalette16( HDC16 hdc )
/***********************************************************************
* IsDCCurrentPalette (GDI.412)
* IsDCCurrentPalette16 (GDI32.@)
*/
BOOL16
WINAPI
IsDCCurrentPalette16
(
HDC16
hDC
)
{
...
...
windows/queue.c
View file @
a62a26ce
...
...
@@ -456,7 +456,8 @@ HTASK16 WINAPI GetWindowTask16( HWND16 hwnd )
}
/***********************************************************************
* InitThreadInput (USER.409)
* InitThreadInput (USER.409)
* InitThreadInput16 (USER32.@)
*/
HQUEUE16
WINAPI
InitThreadInput16
(
WORD
unknown
,
WORD
flags
)
{
...
...
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