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
21171c40
Commit
21171c40
authored
Apr 30, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
janitorial: Prototype func() should be func(void).
parent
2353dcf7
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
cap20wxx.c
dlls/capi2032/cap20wxx.c
+1
-1
regsvr.c
dlls/dmstyle/regsvr.c
+2
-2
ds_image.c
dlls/gphoto2.ds/ds_image.c
+1
-1
domimpl.c
dlls/msxml3/domimpl.c
+1
-1
ime.c
dlls/winex11.drv/ime.c
+1
-1
No files found.
dlls/capi2032/cap20wxx.c
View file @
21171c40
...
...
@@ -50,7 +50,7 @@ static unsigned (*pcapi20_release)(unsigned) = NULL;
static
unsigned
(
*
pcapi20_put_message
)(
unsigned
,
unsigned
char
*
)
=
NULL
;
static
unsigned
(
*
pcapi20_get_message
)(
unsigned
,
unsigned
char
**
)
=
NULL
;
static
unsigned
(
*
pcapi20_waitformessage
)(
unsigned
,
struct
timeval
*
)
=
NULL
;
static
unsigned
(
*
pcapi20_isinstalled
)()
=
NULL
;
static
unsigned
(
*
pcapi20_isinstalled
)(
void
)
=
NULL
;
static
unsigned
(
*
pcapi20_get_profile
)(
unsigned
,
unsigned
char
*
)
=
NULL
;
static
unsigned
char
*
(
*
pcapi20_get_manufacturer
)(
unsigned
,
unsigned
char
*
)
=
NULL
;
static
unsigned
char
*
(
*
pcapi20_get_serial_number
)(
unsigned
,
unsigned
char
*
)
=
NULL
;
...
...
dlls/dmstyle/regsvr.c
View file @
21171c40
...
...
@@ -503,7 +503,7 @@ static struct regsvr_interface const interface_list[] = {
/***********************************************************************
* DllRegisterServer (DMSTYLE.3)
*/
HRESULT
WINAPI
DllRegisterServer
()
{
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
HRESULT
hr
;
TRACE
(
"
\n
"
);
...
...
@@ -517,7 +517,7 @@ HRESULT WINAPI DllRegisterServer() {
/***********************************************************************
* DllUnregisterServer (DMSTYLE.4)
*/
HRESULT
WINAPI
DllUnregisterServer
()
{
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
HRESULT
hr
;
TRACE
(
"
\n
"
);
...
...
dlls/gphoto2.ds/ds_image.c
View file @
21171c40
...
...
@@ -137,7 +137,7 @@ TW_UINT16 GPHOTO2_ImageFileXferGet (pTW_IDENTITY pOrigin,
}
#ifdef HAVE_GPHOTO2
static
TW_UINT16
_get_image_and_startup_jpeg
()
{
static
TW_UINT16
_get_image_and_startup_jpeg
(
void
)
{
const
char
*
folder
=
NULL
,
*
filename
=
NULL
;
struct
gphoto2_file
*
file
;
const
unsigned
char
*
filedata
;
...
...
dlls/msxml3/domimpl.c
View file @
21171c40
...
...
@@ -212,7 +212,7 @@ static const struct IXMLDOMImplementationVtbl dimimpl_vtbl =
dimimpl_hasFeature
};
IUnknown
*
create_doc_Implementation
()
IUnknown
*
create_doc_Implementation
(
void
)
{
domimpl
*
This
;
...
...
dlls/winex11.drv/ime.c
View file @
21171c40
...
...
@@ -985,7 +985,7 @@ LRESULT IME_SendMessageToSelectedHWND(UINT msg, WPARAM wParam, LPARAM lParam)
return
rc
;
}
INT
IME_GetCursorPos
()
INT
IME_GetCursorPos
(
void
)
{
LPINPUTCONTEXT
lpIMC
;
INT
rc
=
0
;
...
...
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