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
6bfc988e
Commit
6bfc988e
authored
Jan 07, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Use GetShortPathNameA() directly in tests.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d259c56c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
shelllink.c
dlls/shell32/tests/shelllink.c
+1
-4
No files found.
dlls/shell32/tests/shelllink.c
View file @
6bfc988e
...
...
@@ -43,7 +43,6 @@ static HRESULT (WINAPI *pSHILCreateFromPath)(LPCWSTR, LPITEMIDLIST *,DWORD*);
static
HRESULT
(
WINAPI
*
pSHGetFolderLocation
)(
HWND
,
INT
,
HANDLE
,
DWORD
,
PIDLIST_ABSOLUTE
*
);
static
HRESULT
(
WINAPI
*
pSHDefExtractIconA
)(
LPCSTR
,
int
,
UINT
,
HICON
*
,
HICON
*
,
UINT
);
static
HRESULT
(
WINAPI
*
pSHGetStockIconInfo
)(
SHSTOCKICONID
,
UINT
,
SHSTOCKICONINFO
*
);
static
DWORD
(
WINAPI
*
pGetShortPathNameA
)(
LPCSTR
,
LPSTR
,
DWORD
);
static
UINT
(
WINAPI
*
pSHExtractIconsW
)(
LPCWSTR
,
int
,
int
,
int
,
HICON
*
,
UINT
*
,
UINT
,
UINT
);
static
BOOL
(
WINAPI
*
pIsProcessDPIAware
)(
void
);
...
...
@@ -767,7 +766,7 @@ static void test_load_save(void)
create_lnk
(
lnkfile
,
&
desc
,
0
);
check_lnk
(
lnkfile
,
&
desc
,
0x0
);
r
=
p
GetShortPathNameA
(
mydir
,
mypath
,
sizeof
(
mypath
));
r
=
GetShortPathNameA
(
mydir
,
mypath
,
sizeof
(
mypath
));
ok
(
r
<
sizeof
(
mypath
),
"GetShortPathName failed (%d), err %d
\n
"
,
r
,
GetLastError
());
strcpy
(
realpath
,
mypath
);
...
...
@@ -1452,7 +1451,6 @@ START_TEST(shelllink)
{
HRESULT
r
;
HMODULE
hmod
=
GetModuleHandleA
(
"shell32.dll"
);
HMODULE
hkernel32
=
GetModuleHandleA
(
"kernel32.dll"
);
HMODULE
huser32
=
GetModuleHandleA
(
"user32.dll"
);
pILIsEqual
=
(
void
*
)
GetProcAddress
(
hmod
,
(
LPSTR
)
21
);
...
...
@@ -1460,7 +1458,6 @@ START_TEST(shelllink)
pSHGetFolderLocation
=
(
void
*
)
GetProcAddress
(
hmod
,
"SHGetFolderLocation"
);
pSHDefExtractIconA
=
(
void
*
)
GetProcAddress
(
hmod
,
"SHDefExtractIconA"
);
pSHGetStockIconInfo
=
(
void
*
)
GetProcAddress
(
hmod
,
"SHGetStockIconInfo"
);
pGetShortPathNameA
=
(
void
*
)
GetProcAddress
(
hkernel32
,
"GetShortPathNameA"
);
pSHExtractIconsW
=
(
void
*
)
GetProcAddress
(
hmod
,
"SHExtractIconsW"
);
pIsProcessDPIAware
=
(
void
*
)
GetProcAddress
(
huser32
,
"IsProcessDPIAware"
);
...
...
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