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
681b71ed
Commit
681b71ed
authored
Dec 12, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 12, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Functions with no paramters must be (void).
parent
ccdc119d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
msvcrt.h
dlls/msvcrt/msvcrt.h
+4
-4
relay.c
dlls/ntdll/relay.c
+2
-2
ole16.c
dlls/ole32/ole16.c
+1
-1
No files found.
dlls/msvcrt/msvcrt.h
View file @
681b71ed
...
...
@@ -65,10 +65,10 @@ typedef long MSVCRT_clock_t;
typedef
long
MSVCRT_time_t
;
typedef
__int64
MSVCRT_fpos_t
;
typedef
void
(
*
MSVCRT_terminate_handler
)();
typedef
void
(
*
MSVCRT_terminate_function
)();
typedef
void
(
*
MSVCRT_unexpected_handler
)();
typedef
void
(
*
MSVCRT_unexpected_function
)();
typedef
void
(
*
MSVCRT_terminate_handler
)(
void
);
typedef
void
(
*
MSVCRT_terminate_function
)(
void
);
typedef
void
(
*
MSVCRT_unexpected_handler
)(
void
);
typedef
void
(
*
MSVCRT_unexpected_function
)(
void
);
typedef
void
(
*
MSVCRT__se_translator_function
)(
unsigned
int
code
,
struct
_EXCEPTION_POINTERS
*
info
);
typedef
void
(
*
MSVCRT__beginthread_start_routine_t
)(
void
*
);
typedef
unsigned
int
(
__stdcall
*
MSVCRT__beginthreadex_start_routine_t
)(
void
*
);
...
...
dlls/ntdll/relay.c
View file @
681b71ed
...
...
@@ -266,8 +266,8 @@ typedef struct tagSNOOP_RETURNENTRIES {
#include "poppack.h"
extern
void
WINAPI
SNOOP_Entry
();
extern
void
WINAPI
SNOOP_Return
();
extern
void
WINAPI
SNOOP_Entry
(
void
);
extern
void
WINAPI
SNOOP_Return
(
void
);
static
SNOOP_DLL
*
firstdll
;
static
SNOOP_RETURNENTRIES
*
firstrets
;
...
...
dlls/ole32/ole16.c
View file @
681b71ed
...
...
@@ -173,7 +173,7 @@ LPVOID IMalloc16_fnHeapMinimize(IMalloc16* iface) {
* IMalloc16_Constructor [VTABLE]
*/
LPMALLOC16
IMalloc16_Constructor
()
IMalloc16_Constructor
(
void
)
{
static
IMalloc16Vtbl
vt16
;
static
SEGPTR
msegvt16
;
...
...
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