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
5bfcdc8d
Commit
5bfcdc8d
authored
Dec 06, 2002
by
Rolf Kalbermatter
Committed by
Alexandre Julliard
Dec 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some parameter types.
parent
41dfa059
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
ordinal.c
dlls/shlwapi/ordinal.c
+14
-14
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+3
-3
No files found.
dlls/shlwapi/ordinal.c
View file @
5bfcdc8d
...
...
@@ -86,13 +86,13 @@ static UINT (WINAPI *pDragQueryFileW)(HDROP, UINT, LPWSTR, UINT);
static
BOOL
(
WINAPI
*
pSHGetPathFromIDListW
)(
LPCITEMIDLIST
,
LPWSTR
);
static
BOOL
(
WINAPI
*
pShellExecuteExW
)(
LPSHELLEXECUTEINFOW
);
static
HICON
(
WINAPI
*
pSHFileOperationW
)(
LPSHFILEOPSTRUCTW
);
static
HICON
(
WINAPI
*
pExtractIconExW
)(
LPCWSTR
,
INT
,
HICON
*
,
HICON
*
,
UINT
);
static
UINT
(
WINAPI
*
pExtractIconExW
)(
LPCWSTR
,
INT
,
HICON
*
,
HICON
*
,
UINT
);
static
BOOL
(
WINAPI
*
pSHGetNewLinkInfoW
)(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
BOOL
*
,
UINT
);
static
DWORD
(
WINAPI
*
pSHDefExtractIconW
)(
LPVOID
,
LPVOID
,
LPVOID
,
LPVOID
,
LPVOID
,
LPVOID
);
/* FIXME: Correct args */
static
HRESULT
(
WINAPI
*
pSHDefExtractIconW
)(
LPCWSTR
,
int
,
UINT
,
HICON
*
,
HICON
*
,
UINT
);
static
HICON
(
WINAPI
*
pExtractIconW
)(
HINSTANCE
,
LPCWSTR
,
UINT
);
static
BOOL
(
WINAPI
*
pGetSaveFileNameW
)(
LPOPENFILENAMEW
);
static
DWORD
(
WINAPI
*
pWNetRestoreConnectionW
)(
LPVOID
,
LPVOID
);
/* FIXME: Correct args */
static
DWORD
(
WINAPI
*
pWNetGetLastErrorW
)(
LP
VOID
,
LPVOID
,
LPVOID
,
LPVOID
,
LPVOID
);
/* FIXME: Correct args */
static
DWORD
(
WINAPI
*
pWNetRestoreConnectionW
)(
HWND
,
LPWSTR
);
static
DWORD
(
WINAPI
*
pWNetGetLastErrorW
)(
LP
DWORD
,
LPWSTR
,
DWORD
,
LPWSTR
,
DWORD
);
static
BOOL
(
WINAPI
*
pPageSetupDlgW
)(
LPPAGESETUPDLGW
);
static
BOOL
(
WINAPI
*
pPrintDlgW
)(
LPPRINTDLGW
);
static
BOOL
(
WINAPI
*
pGetOpenFileNameW
)(
LPOPENFILENAMEW
);
...
...
@@ -2215,10 +2215,10 @@ HICON WINAPI SHLWAPI_336(LPSHFILEOPSTRUCTW lpFileOp)
*
* Late bound call to shell32.ExtractIconExW.
*/
HICON
WINAPI
SHLWAPI_337
(
LPCWSTR
lpszFile
,
INT
nIconIndex
,
HICON
*
phiconLarge
,
UINT
WINAPI
SHLWAPI_337
(
LPCWSTR
lpszFile
,
INT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIcons
)
{
GET_FUNC
(
pExtractIconExW
,
shell32
,
"ExtractIconExW"
,
NULL
);
GET_FUNC
(
pExtractIconExW
,
shell32
,
"ExtractIconExW"
,
0
);
return
pExtractIconExW
(
lpszFile
,
nIconIndex
,
phiconLarge
,
phiconSmall
,
nIcons
);
}
...
...
@@ -2308,11 +2308,11 @@ BOOL WINAPI SHLWAPI_357(LPCWSTR pszLinkTo, LPCWSTR pszDir, LPWSTR pszName,
*
* Late bound call to shell32.SHDefExtractIconW
*/
DWORD
WINAPI
SHLWAPI_358
(
LPVOID
arg1
,
LPVOID
arg2
,
LPVOID
arg3
,
LPVOID
arg4
,
LPVOID
arg5
,
LPVOID
arg6
)
UINT
WINAPI
SHLWAPI_358
(
LPCWSTR
pszIconFile
,
int
iIndex
,
UINT
uFlags
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIconSize
)
{
GET_FUNC
(
pSHDefExtractIconW
,
shell32
,
"SHDefExtractIconW"
,
0
);
return
pSHDefExtractIconW
(
arg1
,
arg2
,
arg3
,
arg4
,
arg5
,
arg6
);
return
pSHDefExtractIconW
(
pszIconFile
,
iIndex
,
uFlags
,
phiconLarge
,
phiconSmall
,
nIconSize
);
}
/*************************************************************************
...
...
@@ -2425,10 +2425,10 @@ BOOL WINAPI SHLWAPI_389(LPOPENFILENAMEW ofn)
*
* Late bound call to mpr.WNetRestoreConnectionW
*/
DWORD
WINAPI
SHLWAPI_390
(
LPVOID
arg1
,
LPVOID
arg2
)
DWORD
WINAPI
SHLWAPI_390
(
HWND
hwndOwner
,
LPWSTR
lpszDevice
)
{
GET_FUNC
(
pWNetRestoreConnectionW
,
mpr
,
"WNetRestoreConnectionW"
,
0
);
return
pWNetRestoreConnectionW
(
arg1
,
arg2
);
return
pWNetRestoreConnectionW
(
hwndOwner
,
lpszDevice
);
}
/*************************************************************************
...
...
@@ -2436,11 +2436,11 @@ DWORD WINAPI SHLWAPI_390(LPVOID arg1, LPVOID arg2)
*
* Late bound call to mpr.WNetGetLastErrorW
*/
DWORD
WINAPI
SHLWAPI_391
(
LP
VOID
arg1
,
LPVOID
arg2
,
LPVOID
arg3
,
LPVOID
arg4
,
LP
VOID
arg5
)
DWORD
WINAPI
SHLWAPI_391
(
LP
DWORD
lpError
,
LPWSTR
lpErrorBuf
,
DWORD
nErrorBufSize
,
LP
WSTR
lpNameBuf
,
DWORD
nNameBufSize
)
{
GET_FUNC
(
pWNetGetLastErrorW
,
mpr
,
"WNetGetLastErrorW"
,
0
);
return
pWNetGetLastErrorW
(
arg1
,
arg2
,
arg3
,
arg4
,
arg5
);
return
pWNetGetLastErrorW
(
lpError
,
lpErrorBuf
,
nErrorBufSize
,
lpNameBuf
,
nNameBufSize
);
}
/*************************************************************************
...
...
dlls/shlwapi/shlwapi.spec
View file @
5bfcdc8d
...
...
@@ -355,7 +355,7 @@
355 stub @
356 stdcall @(ptr ptr) SHLWAPI_356
357 stdcall @(wstr wstr wstr long long) SHLWAPI_357
358 stdcall @(
ptr ptr ptr ptr ptr ptr
) SHLWAPI_358
358 stdcall @(
wstr long long ptr ptr long
) SHLWAPI_358
359 forward @ kernel32.OpenEventW
360 forward @ kernel32.RemoveDirectoryW
361 forward @ kernel32.GetShortPathNameW
...
...
@@ -387,8 +387,8 @@
387 stub ColorAdjustLuma
388 stub @
389 stdcall @(ptr) SHLWAPI_389
390 stdcall @(
ptr p
tr) SHLWAPI_390
391 stdcall @(ptr ptr
ptr ptr ptr
) SHLWAPI_391
390 stdcall @(
long ws
tr) SHLWAPI_390
391 stdcall @(ptr ptr
long ptr long
) SHLWAPI_391
392 stub @
393 forward @ user32.CreateDialogIndirectParamW
394 forward @ user32.CreateDialogIndirectParamA
...
...
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