summaryrefslogtreecommitdiff
path: root/vcard.h
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-08-26 18:48:17 +0300
committerAlon Levy <alevy@redhat.com>2010-08-26 18:48:17 +0300
commit4ba113302df1a6b8b4228b9d1524c10ac8f3cab7 (patch)
tree52aa000814ac88ff0a4ba3d4a6128764a5ca4d3b /vcard.h
parent0dd6cdf43e972de0039bf49a602904f9be8b2ac4 (diff)
rename Event to VEvent (conflicts with spice's event)
Diffstat (limited to 'vcard.h')
-rw-r--r--vcard.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/vcard.h b/vcard.h
index 65530af..82e51f4 100644
--- a/vcard.h
+++ b/vcard.h
@@ -31,7 +31,7 @@ VCardApplet *vcard_new_applet(VCardProcessAPDU applet_process_function,
/* destructor */
void vcard_delete_applet(VCardApplet *applet);
/* accessor - set the card type specific private data */
-void vcard_set_applet_private(VCardApplet *applet, VCardAppletPrivate *private,
+void vcard_set_applet_private(VCardApplet *applet, VCardAppletPrivate *_private,
VCardAppletPrivateFree private_free);
/*
@@ -53,7 +53,7 @@ VCardStatus vcard_process_applet_apdu(VCard *card, VCardAPDU *apdu,
* VCard utilities
*/
/* constructor */
-VCard * vcard_new(VCardEmul *private, VCardEmulFree private_free);
+VCard * vcard_new(VCardEmul *_private, VCardEmulFree private_free);
/* get a reference */
VCard * vcard_reference(VCard *);
/* destructor (reference counted) */
@@ -66,4 +66,5 @@ void vcard_set_buffer_response(VCard *card, VCardBufferResponse *buffer);
VCardType vcard_get_type(VCard *card);
/* get the private data */
VCardEmul *vcard_get_private(VCard *card);
+
#endif