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
1b304178
Commit
1b304178
authored
Sep 01, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Function parameters don't need WINE_UNUSED.
parent
03250ff6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
except.c
dlls/msvcrt/except.c
+1
-1
locale.c
dlls/msvcrt/locale.c
+1
-2
mmsystem.c
dlls/winmm/mmsystem.c
+1
-1
No files found.
dlls/msvcrt/except.c
View file @
1b304178
...
...
@@ -84,7 +84,7 @@ inline static DWORD call_filter( void *func, void *arg, void *ebp )
static
DWORD
MSVCRT_nested_handler
(
PEXCEPTION_RECORD
rec
,
EXCEPTION_REGISTRATION_RECORD
*
frame
,
PCONTEXT
context
WINE_UNUSED
,
PCONTEXT
context
,
EXCEPTION_REGISTRATION_RECORD
**
dispatch
)
{
if
(
rec
->
ExceptionFlags
&
0x6
)
...
...
dlls/msvcrt/locale.c
View file @
1b304178
...
...
@@ -129,8 +129,7 @@ static int compare_info(LCID lcid, DWORD flags, char* buff, const char* cmp)
}
static
BOOL
CALLBACK
find_best_locale_proc
(
HMODULE
hModule
WINE_UNUSED
,
LPCSTR
type
WINE_UNUSED
,
LPCSTR
name
WINE_UNUSED
,
WORD
LangID
,
LONG
lParam
)
find_best_locale_proc
(
HMODULE
hModule
,
LPCSTR
type
,
LPCSTR
name
,
WORD
LangID
,
LONG
lParam
)
{
locale_search_t
*
res
=
(
locale_search_t
*
)
lParam
;
const
LCID
lcid
=
MAKELCID
(
LangID
,
SORT_DEFAULT
);
...
...
dlls/winmm/mmsystem.c
View file @
1b304178
...
...
@@ -1839,7 +1839,7 @@ void mmTaskEntryPoint16(LPSTR cmdLine, WORD di, WORD si)
/**************************************************************************
* mmTaskBlock [MMSYSTEM.902]
*/
void
WINAPI
mmTaskBlock16
(
HINSTANCE16
WINE_UNUSED
hInst
)
void
WINAPI
mmTaskBlock16
(
HINSTANCE16
hInst
)
{
MSG
msg
;
...
...
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