summaryrefslogtreecommitdiffstats
path: root/libmsi/where.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2012-12-09 23:35:30 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-10 17:26:22 +0100
commit6b7407cb031cf245a4998d8c79009039ead38fc5 (patch)
tree510263de28a0319b9070ededaa2cc7c5b6d98ac0 /libmsi/where.c
parentada3b04b2246c13449e6b32b3857d7b86a8958f8 (diff)
downloadmsitools-6b7407cb031cf245a4998d8c79009039ead38fc5.tar.gz
msitools-6b7407cb031cf245a4998d8c79009039ead38fc5.tar.xz
msitools-6b7407cb031cf245a4998d8c79009039ead38fc5.zip
Split libmsi.h to be more gobject-like
Diffstat (limited to 'libmsi/where.c')
-rw-r--r--libmsi/where.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmsi/where.c b/libmsi/where.c
index 010ee19..5491bfa 100644
--- a/libmsi/where.c
+++ b/libmsi/where.c
@@ -37,9 +37,9 @@
/* below is the query interface to a table */
-typedef struct LibmsiRowEntry
+typedef struct _LibmsiRowEntry
{
- struct LibmsiWhereView *wv; /* used during sorting */
+ struct _LibmsiWhereView *wv; /* used during sorting */
unsigned values[1];
} LibmsiRowEntry;
@@ -52,14 +52,14 @@ typedef struct tagJOINTABLE
unsigned table_index;
} JOINTABLE;
-typedef struct LibmsiOrderInfo
+typedef struct _LibmsiOrderInfo
{
unsigned col_count;
unsigned error;
union ext_column columns[1];
} LibmsiOrderInfo;
-typedef struct LibmsiWhereView
+typedef struct _LibmsiWhereView
{
LibmsiView view;
LibmsiDatabase *db;