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
90387059
Commit
90387059
authored
Aug 28, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Aug 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Fix functions defined without specifying argument types by changing them to "(void)".
parent
49616145
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
compobj.c
dlls/ole32/compobj.c
+1
-1
git.c
dlls/ole32/git.c
+1
-1
ole2.c
dlls/ole32/ole2.c
+2
-2
regsvr.c
dlls/ole32/regsvr.c
+2
-2
stubmanager.c
dlls/ole32/stubmanager.c
+1
-1
No files found.
dlls/ole32/compobj.c
View file @
90387059
...
...
@@ -2347,7 +2347,7 @@ HRESULT WINAPI CoFileTimeNow( FILETIME *lpFileTime )
return
S_OK
;
}
static
void
COM_RevokeAllClasses
()
static
void
COM_RevokeAllClasses
(
void
)
{
EnterCriticalSection
(
&
csRegisteredClassList
);
...
...
dlls/ole32/git.c
View file @
90387059
...
...
@@ -391,7 +391,7 @@ static const IGlobalInterfaceTableVtbl StdGlobalInterfaceTableImpl_Vtbl =
};
/** This function constructs the GIT. It should only be called once **/
void
*
StdGlobalInterfaceTable_Construct
()
void
*
StdGlobalInterfaceTable_Construct
(
void
)
{
StdGlobalInterfaceTableImpl
*
newGIT
;
...
...
dlls/ole32/ole2.c
View file @
90387059
...
...
@@ -1814,7 +1814,7 @@ void WINAPI ReleaseStgMedium(
*
* Initializes the OLE drag and drop data structures.
*/
static
void
OLEDD_Initialize
()
static
void
OLEDD_Initialize
(
void
)
{
WNDCLASSA
wndClass
;
...
...
@@ -2160,7 +2160,7 @@ static void OLEDD_TrackStateChange(TrackerWindowInfo* trackerInfo)
* a button state mask equivalent to the one passed in the
* WM_MOUSEMOVE wParam.
*/
static
DWORD
OLEDD_GetButtonState
()
static
DWORD
OLEDD_GetButtonState
(
void
)
{
BYTE
keyboardState
[
256
];
DWORD
keyMask
=
0
;
...
...
dlls/ole32/regsvr.c
View file @
90387059
...
...
@@ -636,7 +636,7 @@ static const struct regsvr_interface interface_list[] = {
/***********************************************************************
* DllRegisterServer (OLE32.@)
*/
HRESULT
WINAPI
DllRegisterServer
()
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
HRESULT
hr
;
...
...
@@ -651,7 +651,7 @@ HRESULT WINAPI DllRegisterServer()
/***********************************************************************
* DllUnregisterServer (OLE32.@)
*/
HRESULT
WINAPI
DllUnregisterServer
()
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
HRESULT
hr
;
...
...
dlls/ole32/stubmanager.c
View file @
90387059
...
...
@@ -739,7 +739,7 @@ static const IRemUnknownVtbl RemUnknown_Vtbl =
};
/* starts the IRemUnknown listener for the current apartment */
HRESULT
start_apartment_remote_unknown
()
HRESULT
start_apartment_remote_unknown
(
void
)
{
IRemUnknown
*
pRemUnknown
;
HRESULT
hr
=
S_OK
;
...
...
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