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
2e38a170
Commit
2e38a170
authored
Jul 03, 2002
by
Gregg Mattinson
Committed by
Alexandre Julliard
Jul 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Void functions can't return a value, even if it is the return value
from another void function.
parent
a3f4e7ff
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
16 deletions
+23
-16
fakezbuffer.c
dlls/ddraw/dsurface/fakezbuffer.c
+1
-1
rtlstr.c
dlls/ntdll/rtlstr.c
+1
-1
shellpath.c
dlls/shell32/shellpath.c
+20
-13
wnd16.c
dlls/user/wnd16.c
+1
-1
No files found.
dlls/ddraw/dsurface/fakezbuffer.c
View file @
2e38a170
...
...
@@ -90,7 +90,7 @@ HRESULT FakeZBuffer_DirectDrawSurface_Create(IDirectDrawImpl* pDD,
void
FakeZBuffer_DirectDrawSurface_final_release
(
IDirectDrawSurfaceImpl
*
This
)
{
return
Main_DirectDrawSurface_final_release
(
This
);
Main_DirectDrawSurface_final_release
(
This
);
}
HRESULT
...
...
dlls/ntdll/rtlstr.c
View file @
2e38a170
...
...
@@ -84,7 +84,7 @@ void WINAPI RtlInitAnsiString( PSTRING target, LPCSTR source)
*/
void
WINAPI
RtlInitString
(
PSTRING
target
,
LPCSTR
source
)
{
return
RtlInitAnsiString
(
target
,
source
);
RtlInitAnsiString
(
target
,
source
);
}
...
...
dlls/shell32/shellpath.c
View file @
2e38a170
...
...
@@ -183,8 +183,9 @@ BOOL WINAPI PathRemoveFileSpecAW(LPVOID lpszPath)
void
WINAPI
PathStripPathAW
(
LPVOID
lpszPath
)
{
if
(
SHELL_OsIsUnicode
())
return
PathStripPathW
(
lpszPath
);
return
PathStripPathA
(
lpszPath
);
PathStripPathW
(
lpszPath
);
else
PathStripPathA
(
lpszPath
);
}
/*************************************************************************
...
...
@@ -203,8 +204,9 @@ BOOL WINAPI PathStripToRootAW(LPVOID lpszPath)
void
WINAPI
PathRemoveArgsAW
(
LPVOID
lpszPath
)
{
if
(
SHELL_OsIsUnicode
())
PathRemoveArgsW
(
lpszPath
);
PathRemoveArgsA
(
lpszPath
);
PathRemoveArgsW
(
lpszPath
);
else
PathRemoveArgsA
(
lpszPath
);
}
/*************************************************************************
...
...
@@ -213,8 +215,9 @@ void WINAPI PathRemoveArgsAW(LPVOID lpszPath)
void
WINAPI
PathRemoveExtensionAW
(
LPVOID
lpszPath
)
{
if
(
SHELL_OsIsUnicode
())
return
PathRemoveExtensionW
(
lpszPath
);
return
PathRemoveExtensionA
(
lpszPath
);
PathRemoveExtensionW
(
lpszPath
);
else
PathRemoveExtensionA
(
lpszPath
);
}
...
...
@@ -256,8 +259,9 @@ LPVOID WINAPI PathGetShortPathAW(LPVOID lpszPath)
void
WINAPI
PathRemoveBlanksAW
(
LPVOID
str
)
{
if
(
SHELL_OsIsUnicode
())
PathRemoveBlanksW
(
str
);
PathRemoveBlanksA
(
str
);
PathRemoveBlanksW
(
str
);
else
PathRemoveBlanksA
(
str
);
}
/*************************************************************************
...
...
@@ -266,8 +270,9 @@ void WINAPI PathRemoveBlanksAW(LPVOID str)
VOID
WINAPI
PathQuoteSpacesAW
(
LPVOID
lpszPath
)
{
if
(
SHELL_OsIsUnicode
())
return
PathQuoteSpacesW
(
lpszPath
);
return
PathQuoteSpacesA
(
lpszPath
);
PathQuoteSpacesW
(
lpszPath
);
else
PathQuoteSpacesA
(
lpszPath
);
}
/*************************************************************************
...
...
@@ -635,9 +640,11 @@ HRESULT WINAPI PathProcessCommandAW (
* PathSetDlgItemPath (SHELL32.48)
*/
VOID
WINAPI
PathSetDlgItemPathAW
(
HWND
hDlg
,
int
id
,
LPCVOID
pszPath
)
{
if
(
SHELL_OsIsUnicode
())
return
PathSetDlgItemPathW
(
hDlg
,
id
,
pszPath
);
return
PathSetDlgItemPathA
(
hDlg
,
id
,
pszPath
);
{
if
(
SHELL_OsIsUnicode
())
PathSetDlgItemPathW
(
hDlg
,
id
,
pszPath
);
else
PathSetDlgItemPathA
(
hDlg
,
id
,
pszPath
);
}
...
...
dlls/user/wnd16.c
View file @
2e38a170
...
...
@@ -1461,7 +1461,7 @@ void WINAPI SetInternalWindowPos16( HWND16 hwnd, UINT16 showCmd, LPRECT16 rect,
*/
void
WINAPI
CalcChildScroll16
(
HWND16
hwnd
,
WORD
scroll
)
{
return
CalcChildScroll
(
WIN_Handle32
(
hwnd
),
scroll
);
CalcChildScroll
(
WIN_Handle32
(
hwnd
),
scroll
);
}
...
...
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