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
157b32c0
Commit
157b32c0
authored
Oct 08, 2004
by
Vincent Béron
Committed by
Alexandre Julliard
Oct 08, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct the calling convention of GetSystemWow64Directory{A,W},
AmpFactorToDB and DBToAmpFactor.
parent
b9e2beda
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
path.c
dlls/kernel/path.c
+2
-2
main.c
dlls/quartz/main.c
+2
-2
No files found.
dlls/kernel/path.c
View file @
157b32c0
...
...
@@ -1436,7 +1436,7 @@ UINT WINAPI GetSystemDirectoryA( LPSTR path, UINT count )
* - On Win32 we should returns ERROR_CALL_NOT_IMPLEMENTED
* - On Win64 we should returns the SysWow64 (system64) directory
*/
UINT
GetSystemWow64DirectoryW
(
LPWSTR
lpBuffer
,
UINT
uSize
)
UINT
WINAPI
GetSystemWow64DirectoryW
(
LPWSTR
lpBuffer
,
UINT
uSize
)
{
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
...
...
@@ -1448,7 +1448,7 @@ UINT GetSystemWow64DirectoryW( LPWSTR lpBuffer, UINT uSize )
*
* See comment for GetWindowsWow64DirectoryW.
*/
UINT
GetSystemWow64DirectoryA
(
LPSTR
lpBuffer
,
UINT
uSize
)
UINT
WINAPI
GetSystemWow64DirectoryA
(
LPSTR
lpBuffer
,
UINT
uSize
)
{
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
...
...
dlls/quartz/main.c
View file @
157b32c0
...
...
@@ -250,13 +250,13 @@ const char * qzdebugstr_State(FILTER_STATE state)
}
}
LONG
AmpFactorToDB
(
LONG
ampfactor
)
LONG
WINAPI
AmpFactorToDB
(
LONG
ampfactor
)
{
FIXME
(
"(%ld) Stub!
\n
"
,
ampfactor
);
return
0
;
}
LONG
DBToAmpFactor
(
LONG
db
)
LONG
WINAPI
DBToAmpFactor
(
LONG
db
)
{
FIXME
(
"(%ld) Stub!
\n
"
,
db
);
/* Avoid divide by zero (probably during range computation) in Windows Media Player 6.4 */
...
...
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