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
bde649c3
Commit
bde649c3
authored
May 18, 2004
by
Eric Pouech
Committed by
Alexandre Julliard
May 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some missing prototypes.
parent
4d003153
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
4 deletions
+6
-4
painting.c
dlls/gdi/painting.c
+1
-1
registry16.c
dlls/kernel/registry16.c
+1
-0
sync.c
dlls/kernel/sync.c
+2
-2
winbase.h
include/winbase.h
+0
-0
wincon.h
include/wincon.h
+1
-0
wingdi.h
include/wingdi.h
+1
-1
No files found.
dlls/gdi/painting.c
View file @
bde649c3
...
...
@@ -314,7 +314,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
LPPIXELFORMATDESCRIPTOR
ppfd
)
INT
WINAPI
ChoosePixelFormat
(
HDC
hdc
,
const
PIXELFORMATDESCRIPTOR
*
ppfd
)
{
INT
ret
=
0
;
DC
*
dc
=
DC_GetDCPtr
(
hdc
);
...
...
dlls/kernel/registry16.c
View file @
bde649c3
...
...
@@ -27,6 +27,7 @@
#include "winbase.h"
#include "winreg.h"
#include "wine/debug.h"
#include "wine/winbase16.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
reg
);
...
...
dlls/kernel/sync.c
View file @
bde649c3
...
...
@@ -236,13 +236,13 @@ BOOL WINAPI RegisterWaitForSingleObject(PHANDLE phNewWaitObject, HANDLE hObject,
/***********************************************************************
* RegisterWaitForSingleObjectEx (KERNEL32.@)
*/
BOOL
WINAPI
RegisterWaitForSingleObjectEx
(
HANDLE
hObject
,
HANDLE
WINAPI
RegisterWaitForSingleObjectEx
(
HANDLE
hObject
,
WAITORTIMERCALLBACK
Callback
,
PVOID
Context
,
ULONG
dwMilliseconds
,
ULONG
dwFlags
)
{
FIXME
(
"%p %p %p %ld %ld
\n
"
,
hObject
,
Callback
,
Context
,
dwMilliseconds
,
dwFlags
);
return
FALSE
;
return
0
;
}
/***********************************************************************
...
...
include/winbase.h
View file @
bde649c3
This diff is collapsed.
Click to expand it.
include/wincon.h
View file @
bde649c3
...
...
@@ -212,6 +212,7 @@ BOOL WINAPI GetConsoleScreenBufferInfo(HANDLE hConsoleOutput,
DWORD
WINAPI
GetConsoleTitleA
(
LPSTR
title
,
DWORD
size
);
DWORD
WINAPI
GetConsoleTitleW
(
LPWSTR
title
,
DWORD
size
);
#define GetConsoleTitle WINELIB_NAME_AW(GetConsoleTitle)
HWND
WINAPI
GetConsoleWindow
(
void
);
BOOL
WINAPI
GetNumberOfConsoleInputEvents
(
HANDLE
hcon
,
LPDWORD
nrofevents
);
BOOL
WINAPI
GetNumberOfConsoleMouseButtons
(
LPDWORD
nrofbuttons
);
BOOL
WINAPI
PeekConsoleInputA
(
HANDLE
handle
,
PINPUT_RECORD
buffer
,
DWORD
count
,
LPDWORD
read
);
...
...
include/wingdi.h
View file @
bde649c3
...
...
@@ -3172,7 +3172,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
LPPIXELFORMATDESCRIPTOR
);
INT
WINAPI
ChoosePixelFormat
(
HDC
,
const
PIXELFORMATDESCRIPTOR
*
);
BOOL
WINAPI
Chord
(
HDC
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
,
INT
);
HENHMETAFILE
WINAPI
CloseEnhMetaFile
(
HDC
);
BOOL
WINAPI
CloseFigure
(
HDC
);
...
...
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