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
9463dba8
Commit
9463dba8
authored
Oct 01, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: Use the explicit LoadLibraryA function.
parent
360afb93
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
32 additions
and
32 deletions
+32
-32
files.c
dlls/advpack/tests/files.c
+1
-1
apphelp.c
dlls/apphelp/tests/apphelp.c
+1
-1
imagelist.c
dlls/comctl32/tests/imagelist.c
+1
-1
ddrawex.c
dlls/ddrawex/tests/ddrawex.c
+1
-1
surface.c
dlls/ddrawex/tests/surface.c
+1
-1
capture.c
dlls/dsound/tests/capture.c
+1
-1
ds3d.c
dlls/dsound/tests/ds3d.c
+1
-1
ds3d8.c
dlls/dsound/tests/ds3d8.c
+1
-1
dsound.c
dlls/dsound/tests/dsound.c
+2
-2
dsound8.c
dlls/dsound/tests/dsound8.c
+1
-1
duplex.c
dlls/dsound/tests/duplex.c
+1
-1
propset.c
dlls/dsound/tests/propset.c
+1
-1
loader.c
dlls/kernel32/tests/loader.c
+7
-7
time.c
dlls/msvcrt/tests/time.c
+1
-1
ds.c
dlls/netapi32/tests/ds.c
+1
-1
editor.c
dlls/riched20/tests/editor.c
+1
-1
richole.c
dlls/riched20/tests/richole.c
+1
-1
txtsrv.c
dlls/riched20/tests/txtsrv.c
+1
-1
editor.c
dlls/riched32/tests/editor.c
+1
-1
istream.c
dlls/shlwapi/tests/istream.c
+1
-1
sti.c
dlls/sti/tests/sti.c
+1
-1
input.c
dlls/user32/tests/input.c
+1
-1
msg.c
dlls/user32/tests/msg.c
+1
-1
info.c
dlls/winspool.drv/tests/info.c
+2
-2
No files found.
dlls/advpack/tests/files.c
View file @
9463dba8
...
...
@@ -495,7 +495,7 @@ static void test_AdvInstallFile(void)
HMODULE
hmod
;
char
destFolder
[
MAX_PATH
];
hmod
=
LoadLibrary
(
"setupapi.dll"
);
hmod
=
LoadLibrary
A
(
"setupapi.dll"
);
if
(
!
hmod
)
{
skip
(
"setupapi.dll not present
\n
"
);
...
...
dlls/apphelp/tests/apphelp.c
View file @
9463dba8
...
...
@@ -105,7 +105,7 @@ static void test_ApphelpCheckShellObject(void)
START_TEST
(
apphelp
)
{
hdll
=
LoadLibrary
(
"apphelp.dll"
);
hdll
=
LoadLibrary
A
(
"apphelp.dll"
);
if
(
!
hdll
)
{
win_skip
(
"apphelp.dll not available
\n
"
);
return
;
...
...
dlls/comctl32/tests/imagelist.c
View file @
9463dba8
...
...
@@ -1217,7 +1217,7 @@ static void test_shell_imagelist(void)
int
cx
,
cy
;
/* Try to load function from shell32 */
hShell32
=
LoadLibrary
(
"shell32.dll"
);
hShell32
=
LoadLibrary
A
(
"shell32.dll"
);
pSHGetImageList
=
(
void
*
)
GetProcAddress
(
hShell32
,
(
LPCSTR
)
727
);
if
(
!
pSHGetImageList
)
...
...
dlls/ddrawex/tests/ddrawex.c
View file @
9463dba8
...
...
@@ -95,7 +95,7 @@ START_TEST(ddrawex)
IClassFactory
*
classfactory
=
NULL
;
ULONG
ref
;
HRESULT
hr
;
HMODULE
hmod
=
LoadLibrary
(
"ddrawex.dll"
);
HMODULE
hmod
=
LoadLibrary
A
(
"ddrawex.dll"
);
if
(
hmod
==
NULL
)
{
skip
(
"Failed to load ddrawex.dll
\n
"
);
return
;
...
...
dlls/ddrawex/tests/surface.c
View file @
9463dba8
...
...
@@ -408,7 +408,7 @@ START_TEST(surface)
IClassFactory
*
classfactory
=
NULL
;
ULONG
ref
;
HRESULT
hr
;
HMODULE
hmod
=
LoadLibrary
(
"ddrawex.dll"
);
HMODULE
hmod
=
LoadLibrary
A
(
"ddrawex.dll"
);
if
(
hmod
==
NULL
)
{
skip
(
"Failed to load ddrawex.dll
\n
"
);
return
;
...
...
dlls/dsound/tests/capture.c
View file @
9463dba8
...
...
@@ -759,7 +759,7 @@ START_TEST(capture)
CoInitialize
(
NULL
);
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
!
hDsound
)
{
skip
(
"dsound.dll not found - skipping all tests
\n
"
);
return
;
...
...
dlls/dsound/tests/ds3d.c
View file @
9463dba8
...
...
@@ -1323,7 +1323,7 @@ START_TEST(ds3d)
CoInitialize
(
NULL
);
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
hDsound
)
{
...
...
dlls/dsound/tests/ds3d8.c
View file @
9463dba8
...
...
@@ -1146,7 +1146,7 @@ START_TEST(ds3d8)
CoInitialize
(
NULL
);
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
hDsound
)
{
...
...
dlls/dsound/tests/dsound.c
View file @
9463dba8
...
...
@@ -1646,7 +1646,7 @@ START_TEST(dsound)
CoInitialize
(
NULL
);
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
hDsound
)
{
BOOL
ret
;
...
...
@@ -1655,7 +1655,7 @@ START_TEST(dsound)
ok
(
ret
,
"FreeLibrary(1) returned %d
\n
"
,
GetLastError
());
}
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
hDsound
)
{
...
...
dlls/dsound/tests/dsound8.c
View file @
9463dba8
...
...
@@ -1176,7 +1176,7 @@ START_TEST(dsound8)
CoInitialize
(
NULL
);
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
hDsound
)
{
...
...
dlls/dsound/tests/duplex.c
View file @
9463dba8
...
...
@@ -340,7 +340,7 @@ START_TEST(duplex)
CoInitialize
(
NULL
);
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
hDsound
)
{
...
...
dlls/dsound/tests/propset.c
View file @
9463dba8
...
...
@@ -722,7 +722,7 @@ START_TEST(propset)
CoInitialize
(
NULL
);
hDsound
=
LoadLibrary
(
"dsound.dll"
);
hDsound
=
LoadLibrary
A
(
"dsound.dll"
);
if
(
hDsound
)
{
...
...
dlls/kernel32/tests/loader.c
View file @
9463dba8
...
...
@@ -375,7 +375,7 @@ static void test_Loader(void)
CloseHandle
(
hfile
);
SetLastError
(
0xdeadbeef
);
hlib
=
LoadLibrary
(
dll_name
);
hlib
=
LoadLibrary
A
(
dll_name
);
if
(
hlib
)
{
MEMORY_BASIC_INFORMATION
info
;
...
...
@@ -701,7 +701,7 @@ static void test_image_mapping(const char *dll_name, DWORD scn_page_access, BOOL
UnmapViewOfFile
(
addr2
);
SetLastError
(
0xdeadbeef
);
addr2
=
LoadLibrary
(
dll_name
);
addr2
=
LoadLibrary
A
(
dll_name
);
if
(
is_dll
)
{
ok
(
!
addr2
,
"LoadLibrary should fail, is_dll %d
\n
"
,
is_dll
);
...
...
@@ -983,7 +983,7 @@ static void test_section_access(void)
CloseHandle
(
hfile
);
SetLastError
(
0xdeadbeef
);
hlib
=
LoadLibrary
(
dll_name
);
hlib
=
LoadLibrary
A
(
dll_name
);
ok
(
hlib
!=
0
,
"LoadLibrary error %d
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
...
...
@@ -1364,7 +1364,7 @@ static BOOL WINAPI dll_entry_point(HINSTANCE hinst, DWORD reason, LPVOID param)
handle
=
GetModuleHandle
(
"winver.exe"
);
ok
(
!
handle
,
"winver.exe shouldn't be loaded yet
\n
"
);
SetLastError
(
0xdeadbeef
);
handle
=
LoadLibrary
(
"winver.exe"
);
handle
=
LoadLibrary
A
(
"winver.exe"
);
ok
(
handle
!=
0
,
"LoadLibrary error %d
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
FreeLibrary
(
handle
);
...
...
@@ -1491,7 +1491,7 @@ static void child_process(const char *dll_name, DWORD target_offset)
CloseHandle
(
file
);
SetLastError
(
0xdeadbeef
);
hmod
=
LoadLibrary
(
dll_name
);
hmod
=
LoadLibrary
A
(
dll_name
);
ok
(
hmod
!=
0
,
"LoadLibrary error %d
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
...
...
@@ -2232,7 +2232,7 @@ static void test_ResolveDelayLoadedAPI(void)
ULONG
size
;
SetLastError
(
0xdeadbeef
);
hlib
=
LoadLibrary
(
td
[
i
]);
hlib
=
LoadLibrary
A
(
td
[
i
]);
ok
(
hlib
!=
NULL
,
"LoadLibrary error %u
\n
"
,
GetLastError
());
if
(
!
hlib
)
{
...
...
@@ -2261,7 +2261,7 @@ static void test_ResolveDelayLoadedAPI(void)
itdn
=
RVAToAddr
(
delaydir
->
ImportNameTableRVA
,
hlib
);
itda
=
RVAToAddr
(
delaydir
->
ImportAddressTableRVA
,
hlib
);
htarget
=
LoadLibrary
(
RVAToAddr
(
delaydir
->
DllNameRVA
,
hlib
));
htarget
=
LoadLibrary
A
(
RVAToAddr
(
delaydir
->
DllNameRVA
,
hlib
));
for
(
j
=
0
;
itdn
[
j
].
u1
.
Ordinal
;
j
++
)
{
void
*
ret
,
*
load
;
...
...
dlls/msvcrt/tests/time.c
View file @
9463dba8
...
...
@@ -54,7 +54,7 @@ static char* (__cdecl *p_asctime)(const struct tm *);
static
void
init
(
void
)
{
HMODULE
hmod
=
LoadLibrary
(
"msvcrt.dll"
);
HMODULE
hmod
=
LoadLibrary
A
(
"msvcrt.dll"
);
p_gmtime32
=
(
void
*
)
GetProcAddress
(
hmod
,
"_gmtime32"
);
p_gmtime
=
(
void
*
)
GetProcAddress
(
hmod
,
"gmtime"
);
...
...
dlls/netapi32/tests/ds.c
View file @
9463dba8
...
...
@@ -76,7 +76,7 @@ static void test_get(void)
START_TEST
(
ds
)
{
HMODULE
hnetapi32
=
LoadLibrary
(
"netapi32.dll"
);
HMODULE
hnetapi32
=
LoadLibrary
A
(
"netapi32.dll"
);
pDsRoleGetPrimaryDomainInformation
=
(
void
*
)
GetProcAddress
(
hnetapi32
,
"DsRoleGetPrimaryDomainInformation"
);
if
(
pDsRoleGetPrimaryDomainInformation
)
...
...
dlls/riched20/tests/editor.c
View file @
9463dba8
...
...
@@ -7415,7 +7415,7 @@ START_TEST( editor )
BOOL
ret
;
/* Must explicitly LoadLibrary(). The test has no references to functions in
* RICHED20.DLL, so the linker doesn't actually link to it. */
hmoduleRichEdit
=
LoadLibrary
(
"RICHED20.DLL
"
);
hmoduleRichEdit
=
LoadLibrary
A
(
"riched20.dll
"
);
ok
(
hmoduleRichEdit
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
test_WM_CHAR
();
...
...
dlls/riched20/tests/richole.c
View file @
9463dba8
...
...
@@ -335,7 +335,7 @@ START_TEST(richole)
{
/* Must explicitly LoadLibrary(). The test has no references to functions in
* RICHED20.DLL, so the linker doesn't actually link to it. */
hmoduleRichEdit
=
LoadLibrary
(
"RICHED20.DLL
"
);
hmoduleRichEdit
=
LoadLibrary
A
(
"riched20.dll
"
);
ok
(
hmoduleRichEdit
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
test_Interfaces
();
...
...
dlls/riched20/tests/txtsrv.c
View file @
9463dba8
...
...
@@ -882,7 +882,7 @@ START_TEST( txtsrv )
/* Must explicitly LoadLibrary(). The test has no references to functions in
* RICHED20.DLL, so the linker doesn't actually link to it. */
hmoduleRichEdit
=
LoadLibrary
(
"RICHED20.DLL
"
);
hmoduleRichEdit
=
LoadLibrary
A
(
"riched20.dll
"
);
ok
(
hmoduleRichEdit
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
pIID_ITextServices
=
(
IID
*
)
GetProcAddress
(
hmoduleRichEdit
,
"IID_ITextServices"
);
...
...
dlls/riched32/tests/editor.c
View file @
9463dba8
...
...
@@ -1208,7 +1208,7 @@ START_TEST( editor )
/* Must explicitly LoadLibrary(). The test has no references to functions in
* RICHED32.DLL, so the linker doesn't actually link to it. */
hmoduleRichEdit
=
LoadLibrary
(
"RICHED32.DLL
"
);
hmoduleRichEdit
=
LoadLibrary
A
(
"riched32.dll
"
);
ok
(
hmoduleRichEdit
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
test_WM_SETTEXT
();
...
...
dlls/shlwapi/tests/istream.c
View file @
9463dba8
...
...
@@ -683,7 +683,7 @@ START_TEST(istream)
int
i
,
j
,
k
;
hShlwapi
=
LoadLibrary
(
"shlwapi.dll"
);
hShlwapi
=
LoadLibrary
A
(
"shlwapi.dll"
);
pSHCreateStreamOnFileA
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
"SHCreateStreamOnFileA"
);
pSHCreateStreamOnFileW
=
(
void
*
)
GetProcAddress
(
hShlwapi
,
"SHCreateStreamOnFileW"
);
...
...
dlls/sti/tests/sti.c
View file @
9463dba8
...
...
@@ -63,7 +63,7 @@ static struct IUnknownVtbl aggregator_vtbl =
static
BOOL
init_function_pointers
(
void
)
{
sti_dll
=
LoadLibrary
(
"sti.dll"
);
sti_dll
=
LoadLibrary
A
(
"sti.dll"
);
if
(
sti_dll
)
{
pStiCreateInstance
=
(
void
*
)
...
...
dlls/user32/tests/input.c
View file @
9463dba8
...
...
@@ -1171,7 +1171,7 @@ static void test_Input_unicode(void)
return
;
}
hModuleImm32
=
LoadLibrary
(
"imm32.dll"
);
hModuleImm32
=
LoadLibrary
A
(
"imm32.dll"
);
if
(
hModuleImm32
)
{
pImmDisableIME
=
(
void
*
)
GetProcAddress
(
hModuleImm32
,
"ImmDisableIME"
);
if
(
pImmDisableIME
)
...
...
dlls/user32/tests/msg.c
View file @
9463dba8
...
...
@@ -14279,7 +14279,7 @@ START_TEST(msg)
init_procs
();
hModuleImm32
=
LoadLibrary
(
"imm32.dll"
);
hModuleImm32
=
LoadLibrary
A
(
"imm32.dll"
);
if
(
hModuleImm32
)
{
pImmDisableIME
=
(
void
*
)
GetProcAddress
(
hModuleImm32
,
"ImmDisableIME"
);
if
(
pImmDisableIME
)
...
...
dlls/winspool.drv/tests/info.c
View file @
9463dba8
...
...
@@ -2761,7 +2761,7 @@ static void test_DeviceCapabilities(void)
INT
n_papers
,
n_paper_size
,
n_paper_names
,
n_copies
,
ret
;
DWORD
fields
;
hComdlg32
=
LoadLibrary
(
"comdlg32.dll"
);
hComdlg32
=
LoadLibrary
A
(
"comdlg32.dll"
);
assert
(
hComdlg32
);
pPrintDlgA
=
(
void
*
)
GetProcAddress
(
hComdlg32
,
"PrintDlgA"
);
assert
(
pPrintDlgA
);
...
...
@@ -2993,7 +2993,7 @@ todo_wine
START_TEST
(
info
)
{
hwinspool
=
LoadLibrary
(
"winspool.drv"
);
hwinspool
=
LoadLibrary
A
(
"winspool.drv"
);
pAddPortExA
=
(
void
*
)
GetProcAddress
(
hwinspool
,
"AddPortExA"
);
pEnumPrinterDriversW
=
(
void
*
)
GetProcAddress
(
hwinspool
,
"EnumPrinterDriversW"
);
pGetDefaultPrinterA
=
(
void
*
)
GetProcAddress
(
hwinspool
,
"GetDefaultPrinterA"
);
...
...
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