summaryrefslogtreecommitdiffstats
path: root/libmsi/record.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-11-30 09:02:52 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:30:30 +0100
commit0eab29cb2cd62c7869c97b94c50af8fd26734e19 (patch)
tree1ea45feb35822b35513470aefa997fb6a64ce036 /libmsi/record.c
parent52ca9197e74e4e84a29c7e354a105f5099e15ec9 (diff)
downloadmsitools-0eab29cb2cd62c7869c97b94c50af8fd26734e19.tar.gz
msitools-0eab29cb2cd62c7869c97b94c50af8fd26734e19.tar.xz
msitools-0eab29cb2cd62c7869c97b94c50af8fd26734e19.zip
make Unicode APIs private
Diffstat (limited to 'libmsi/record.c')
-rw-r--r--libmsi/record.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmsi/record.c b/libmsi/record.c
index 0390fe4..9d1854b 100644
--- a/libmsi/record.c
+++ b/libmsi/record.c
@@ -420,7 +420,7 @@ unsigned MSI_RecordGetStringA(LibmsiRecord *rec, unsigned iField,
return ret;
}
-unsigned MsiRecordGetStringA(LibmsiObject *handle, unsigned iField,
+unsigned MsiRecordGetString(LibmsiObject *handle, unsigned iField,
char *szValue, unsigned *pcchValue)
{
LibmsiRecord *rec;
@@ -589,7 +589,7 @@ static unsigned MSI_RecordSetStringA( LibmsiRecord *rec, unsigned iField, const
return 0;
}
-unsigned MsiRecordSetStringA( LibmsiObject *handle, unsigned iField, const char *szValue )
+unsigned MsiRecordSetString( LibmsiObject *handle, unsigned iField, const char *szValue )
{
LibmsiRecord *rec;
unsigned ret;