summaryrefslogtreecommitdiffstats
path: root/tests/testrecord.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 10:06:48 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:26:29 +0100
commitee54109d9b784c72b25418933494e0691f42c2e8 (patch)
tree25fe1e3793887a5ab1c16b507149d416dd5c4b2c /tests/testrecord.c
parent4194f5245fd2c0277f432bc0b7be4e681d546af2 (diff)
downloadmsitools-ee54109d9b784c72b25418933494e0691f42c2e8.tar.gz
msitools-ee54109d9b784c72b25418933494e0691f42c2e8.tar.xz
msitools-ee54109d9b784c72b25418933494e0691f42c2e8.zip
get rid of handles
Diffstat (limited to 'tests/testrecord.c')
-rw-r--r--tests/testrecord.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testrecord.c b/tests/testrecord.c
index 48fedfb..1518e71 100644
--- a/tests/testrecord.c
+++ b/tests/testrecord.c
@@ -50,7 +50,7 @@ static void test_msirecord(void)
{
DWORD r, sz;
INT i;
- MSIHANDLE h;
+ PMSIOBJECT h;
char buf[10];
WCHAR bufW[10];
const char str[] = "hello";
@@ -383,7 +383,7 @@ static void test_msirecord(void)
static void test_MsiRecordGetString(void)
{
- MSIHANDLE rec;
+ PMSIOBJECT rec;
CHAR buf[MAX_PATH];
DWORD sz;
UINT r;
@@ -445,7 +445,7 @@ static void test_MsiRecordGetString(void)
static void test_MsiRecordGetInteger(void)
{
- MSIHANDLE rec;
+ PMSIOBJECT rec;
INT val;
UINT r;
@@ -475,7 +475,7 @@ static void test_MsiRecordGetInteger(void)
static void test_fieldzero(void)
{
- MSIHANDLE hdb, hview, rec;
+ PMSIOBJECT hdb, hview, rec;
CHAR buf[MAX_PATH];
LPCSTR query;
DWORD sz;