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
fa6ffb4d
Commit
fa6ffb4d
authored
Oct 07, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix empty function prototypes.
parent
d6f48927
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
11 additions
and
11 deletions
+11
-11
texture.c
dlls/d3dx9_36/tests/texture.c
+1
-1
imm32.c
dlls/imm32/tests/imm32.c
+1
-1
profile.c
dlls/mscms/tests/profile.c
+2
-2
inputprocessor.c
dlls/msctf/tests/inputprocessor.c
+1
-1
msi.c
dlls/msi/tests/msi.c
+1
-1
msxml_private.h
dlls/msxml3/msxml_private.h
+1
-1
relay.c
dlls/winedos/relay.c
+1
-1
x11drv.h
dlls/winex11.drv/x11drv.h
+1
-1
preloader.c
loader/preloader.c
+1
-1
main.c
programs/secedit/main.c
+1
-1
No files found.
dlls/d3dx9_36/tests/texture.c
View file @
fa6ffb4d
...
...
@@ -78,7 +78,7 @@ static HRESULT create_file(const char *filename, const unsigned char *data, cons
return
D3DERR_INVALIDCALL
;
}
static
void
test_D3DXGetImageInfo
()
static
void
test_D3DXGetImageInfo
(
void
)
{
HRESULT
hr
;
D3DXIMAGE_INFO
info
;
...
...
dlls/imm32/tests/imm32.c
View file @
fa6ffb4d
...
...
@@ -118,7 +118,7 @@ static void msg_spy_init(HWND hwnd) {
msg_spy_flush_msgs
();
}
static
void
msg_spy_cleanup
()
{
static
void
msg_spy_cleanup
(
void
)
{
if
(
msg_spy
.
get_msg_hook
)
UnhookWindowsHookEx
(
msg_spy
.
get_msg_hook
);
if
(
msg_spy
.
call_wnd_proc_hook
)
...
...
dlls/mscms/tests/profile.c
View file @
fa6ffb4d
...
...
@@ -453,7 +453,7 @@ static void test_GetCountColorProfileElements(void)
}
}
static
void
test_GetStandardColorSpaceProfileA
()
static
void
test_GetStandardColorSpaceProfileA
(
void
)
{
BOOL
ret
;
DWORD
size
;
...
...
@@ -533,7 +533,7 @@ static void test_GetStandardColorSpaceProfileA()
ok
(
ret
,
"SetStandardColorSpaceProfileA() failed (%d)
\n
"
,
GetLastError
()
);
}
static
void
test_GetStandardColorSpaceProfileW
()
static
void
test_GetStandardColorSpaceProfileW
(
void
)
{
BOOL
ret
;
DWORD
size
;
...
...
dlls/msctf/tests/inputprocessor.c
View file @
fa6ffb4d
...
...
@@ -770,7 +770,7 @@ static HRESULT RegisterTextService(REFCLSID rclsid)
return
CoRegisterClassObject
(
rclsid
,
(
IUnknown
*
)
cf
,
CLSCTX_INPROC_SERVER
,
REGCLS_MULTIPLEUSE
,
&
regid
);
}
static
HRESULT
UnregisterTextService
()
static
HRESULT
UnregisterTextService
(
void
)
{
return
CoRevokeClassObject
(
regid
);
}
...
...
dlls/msi/tests/msi.c
View file @
fa6ffb4d
...
...
@@ -8510,7 +8510,7 @@ static void test_MsiEnumPatchesEx_userunmanaged(LPCSTR usersid, LPCSTR expecteds
RegCloseKey
(
prodkey
);
}
static
void
test_MsiEnumPatchesEx_machine
()
static
void
test_MsiEnumPatchesEx_machine
(
void
)
{
CHAR
keypath
[
MAX_PATH
],
patch
[
MAX_PATH
];
CHAR
patch_squashed
[
MAX_PATH
],
patchcode
[
MAX_PATH
];
...
...
dlls/msxml3/msxml_private.h
View file @
fa6ffb4d
...
...
@@ -118,7 +118,7 @@ extern IUnknown *create_comment( xmlNodePtr comment );
extern
IUnknown
*
create_cdata
(
xmlNodePtr
text
);
extern
IXMLDOMNodeList
*
create_children_nodelist
(
xmlNodePtr
);
extern
IXMLDOMNamedNodeMap
*
create_nodemap
(
IXMLDOMNode
*
node
);
extern
IUnknown
*
create_doc_Implementation
();
extern
IUnknown
*
create_doc_Implementation
(
void
);
extern
IUnknown
*
create_doc_fragment
(
xmlNodePtr
fragment
);
extern
IUnknown
*
create_doc_entity_ref
(
xmlNodePtr
entity
);
...
...
dlls/winedos/relay.c
View file @
fa6ffb4d
...
...
@@ -167,7 +167,7 @@ void DOSVM_RelayHandler( CONTEXT86 *context )
*/
void
DOSVM_BuildCallFrame
(
CONTEXT86
*
context
,
DOSRELAY
relay
,
LPVOID
data
)
{
static
void
(
*
__wine_call_from_16_regs_ptr
)();
static
void
(
*
__wine_call_from_16_regs_ptr
)(
void
);
WORD
code_sel
=
DOSVM_dpmi_segments
->
relay_code_sel
;
/*
...
...
dlls/winex11.drv/x11drv.h
View file @
fa6ffb4d
...
...
@@ -300,7 +300,7 @@ extern BOOL destroy_glxpixmap(Display *display, XID glxpixmap);
/* IME support */
extern
void
IME_UnregisterClasses
(
void
);
extern
void
IME_SetOpenStatus
(
BOOL
fOpen
);
extern
INT
IME_GetCursorPos
();
extern
INT
IME_GetCursorPos
(
void
);
extern
void
IME_SetCursorPos
(
DWORD
pos
);
extern
void
IME_UpdateAssociation
(
HWND
focus
);
extern
BOOL
IME_SetCompositionString
(
DWORD
dwIndex
,
LPCVOID
lpComp
,
...
...
loader/preloader.c
View file @
fa6ffb4d
...
...
@@ -192,7 +192,7 @@ struct
* It calls wld_start, passing a pointer to the args it receives
* then jumps to the address wld_start returns.
*/
void
_start
();
void
_start
(
void
);
extern
char
_end
[];
__ASM_GLOBAL_FUNC
(
_start
,
"
\t
movl $243,%eax
\n
"
/* SYS_set_thread_area */
...
...
programs/secedit/main.c
View file @
fa6ffb4d
...
...
@@ -16,7 +16,7 @@
#include <stdlib.h>
int
main
()
int
main
(
int
argc
,
char
*
argv
[]
)
{
return
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