Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
b379e420
Commit
b379e420
authored
Sep 06, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Sep 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes for function prototypes without arguments.
parent
0d4f07ba
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
thunk.c
dlls/kernel/thunk.c
+2
-2
misc.c
dlls/msvcrt/misc.c
+1
-1
errorinfo.c
dlls/ole32/errorinfo.c
+1
-1
dbghelp.h
include/dbghelp.h
+1
-1
sqlext.h
include/sqlext.h
+2
-2
No files found.
dlls/kernel/thunk.c
View file @
b379e420
...
...
@@ -1030,7 +1030,7 @@ BOOL WINAPI SSInit16(void)
* RETURNS
* TRUE for success.
*/
BOOL
WINAPI
SSOnBigStack
()
BOOL
WINAPI
SSOnBigStack
(
void
)
{
TRACE
(
"Yes, thunking is initialized
\n
"
);
return
TRUE
;
...
...
@@ -2109,7 +2109,7 @@ SEGPTR WINAPI Get16DLLAddress(HMODULE16 handle, LPSTR func_name)
* GetWin16DOSEnv (KERNEL32.34)
* Returns some internal value.... probably the default environment database?
*/
DWORD
WINAPI
GetWin16DOSEnv
()
DWORD
WINAPI
GetWin16DOSEnv
(
void
)
{
FIXME
(
"stub, returning 0
\n
"
);
return
0
;
...
...
dlls/msvcrt/misc.c
View file @
b379e420
...
...
@@ -41,7 +41,7 @@ void _beep( unsigned int freq, unsigned int duration)
/*********************************************************************
* rand (MSVCRT.@)
*/
int
MSVCRT_rand
()
int
MSVCRT_rand
(
void
)
{
return
(
rand
()
&
0x7fff
);
}
...
...
dlls/ole32/errorinfo.c
View file @
b379e420
...
...
@@ -171,7 +171,7 @@ static inline ErrorInfoImpl *impl_from_ISupportErrorInfo( ISupportErrorInfo *ifa
#define _ICreateErrorInfo_(This) (ICreateErrorInfo*)&(This->lpvtcei)
#define _ISupportErrorInfo_(This) (ISupportErrorInfo*)&(This->lpvtsei)
IErrorInfo
*
IErrorInfoImpl_Constructor
()
IErrorInfo
*
IErrorInfoImpl_Constructor
(
void
)
{
ErrorInfoImpl
*
ei
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
ErrorInfoImpl
));
if
(
ei
)
...
...
include/dbghelp.h
View file @
b379e420
...
...
@@ -895,7 +895,7 @@ typedef BOOL (WINAPI* PSYMBOLSERVEROPENPROC)(void);
typedef
BOOL
(
WINAPI
*
PSYMBOLSERVERCLOSEPROC
)(
void
);
typedef
BOOL
(
WINAPI
*
PSYMBOLSERVERSETOPTIONSPROC
)(
UINT_PTR
,
ULONG64
);
typedef
BOOL
(
CALLBACK
*
PSYMBOLSERVERCALLBACKPROC
)(
UINT_PTR
,
ULONG64
,
ULONG64
);
typedef
UINT_PTR
(
WINAPI
*
PSYMBOLSERVERGETOPTIONSPROC
)();
typedef
UINT_PTR
(
WINAPI
*
PSYMBOLSERVERGETOPTIONSPROC
)(
void
);
typedef
BOOL
(
WINAPI
*
PSYMBOLSERVERPINGPROC
)(
LPCSTR
);
#define SSRVOPT_CALLBACK 0x0001
...
...
include/sqlext.h
View file @
b379e420
...
...
@@ -1635,9 +1635,9 @@ SQLRETURN WINAPI SQLSetScrollOptions(
#define TRACE_VERSION 1000
RETCODE
TraceOpenLogFile
(
LPWSTR
,
LPWSTR
,
DWORD
);
RETCODE
TraceCloseLogFile
();
RETCODE
TraceCloseLogFile
(
void
);
VOID
TraceReturn
(
RETCODE
,
RETCODE
);
DWORD
TraceVersion
();
DWORD
TraceVersion
(
void
);
/*#define TRACE_ON 0x00000001L*/
#define TRACE_VS_EVENT_ON 0x00000002L
...
...
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