Michael Karcher : oleaut32/tests: Call functions via manually obtained pointers.

Alexandre Julliard julliard at winehq.org
Wed May 28 04:56:52 CDT 2008


Module: wine
Branch: master
Commit: 14e069b3d60b7a3b060ad4d30f057fcbe78b6ee3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=14e069b3d60b7a3b060ad4d30f057fcbe78b6ee3

Author: Michael Karcher <wine at mkarcher.dialup.fu-berlin.de>
Date:   Tue May 27 15:28:23 2008 +0200

oleaut32/tests: Call functions via manually obtained pointers.

---

 dlls/oleaut32/tests/vartype.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/oleaut32/tests/vartype.c b/dlls/oleaut32/tests/vartype.c
index 770a860..e436d8c 100644
--- a/dlls/oleaut32/tests/vartype.c
+++ b/dlls/oleaut32/tests/vartype.c
@@ -1098,7 +1098,7 @@ static void test_VarUI1FromDisp(void)
   dispatch.vt = VT_UI1;
   dispatch.bFailInvoke = FALSE;
 
-  hres = VarUI1FromDisp((IDispatch*)&dispatch, in, &out);
+  hres = pVarUI1FromDisp((IDispatch*)&dispatch, in, &out);
   trace("0x%08x\n", hres);
 
   hres = VariantChangeTypeEx(&vDst, &vSrc, in, 0, VT_UI1);
@@ -1106,7 +1106,7 @@ static void test_VarUI1FromDisp(void)
 
   dispatch.bFailInvoke = TRUE;
 
-  hres = VarUI1FromDisp((IDispatch*)&dispatch, in, &out);
+  hres = pVarUI1FromDisp((IDispatch*)&dispatch, in, &out);
   trace("0x%08x\n", hres);
 
   hres = VariantChangeTypeEx(&vDst, &vSrc, in, 0, VT_UI1);
@@ -4803,7 +4803,7 @@ static void test_VarBstrFromDate(void)
 
 #define BSTR_CY(l, a, b, e) \
   S(l).Lo = b; S(l).Hi = a; \
-  hres = VarBstrFromCy(l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
+  hres = pVarBstrFromCy(l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
   ok(hres == S_OK, "got hres 0x%08x\n", hres);\
   if (hres== S_OK && bstr)\
   {\
@@ -4865,7 +4865,7 @@ static void test_VarBstrFromCy(void)
 
 #define BSTR_DEC(l, a, b, c, d, e) \
   SETDEC(l, a,b,c,d);\
-  hres = VarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
+  hres = pVarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
   ok(hres == S_OK, "got hres 0x%08x\n", hres);\
   if (hres== S_OK && bstr)\
   {\
@@ -4874,7 +4874,7 @@ static void test_VarBstrFromCy(void)
 
 #define BSTR_DEC64(l, a, b, c, x, d, e) \
   SETDEC64(l, a,b,c,x,d);\
-  hres = VarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
+  hres = pVarBstrFromDec(&l, lcid, LOCALE_NOUSEROVERRIDE, &bstr);\
   ok(hres == S_OK, "got hres 0x%08x\n", hres);\
   if (hres== S_OK && bstr)\
   {\




More information about the wine-cvs mailing list