summaryrefslogtreecommitdiff
path: root/p11-kit/uri.h
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@redhat.com>2018-05-28 12:54:39 +0200
committerDaiki Ueno <ueno@gnu.org>2018-05-28 14:08:55 +0200
commitcd0a2de679a81829b7323bc5db46222b9eaab1d9 (patch)
treea0bfaffd628292fbaceb335913cda1b4ab80d8e9 /p11-kit/uri.h
parente4c5d3b34941bdc433072a492a0a7fdbddba0cc2 (diff)
pkcs11: Exercise GNU calling convention at compile time
Diffstat (limited to 'p11-kit/uri.h')
-rw-r--r--p11-kit/uri.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/p11-kit/uri.h b/p11-kit/uri.h
index 6eb470f..d95bd00 100644
--- a/p11-kit/uri.h
+++ b/p11-kit/uri.h
@@ -79,11 +79,15 @@ typedef enum {
* to that here.
*/
#ifdef CRYPTOKI_GNU
+typedef struct ck_info CK_INFO;
typedef struct ck_info *CK_INFO_PTR;
+typedef struct ck_token_info CK_TOKEN_INFO;
typedef struct ck_token_info *CK_TOKEN_INFO_PTR;
typedef ck_attribute_type_t CK_ATTRIBUTE_TYPE;
+typedef struct ck_attribute CK_ATTRIBUTE;
typedef struct ck_attribute *CK_ATTRIBUTE_PTR;
typedef unsigned long int CK_ULONG;
+typedef struct ck_slot_info CK_SLOT_INFO;
typedef struct ck_slot_info *CK_SLOT_INFO_PTR;
typedef ck_slot_id_t CK_SLOT_ID;
typedef P11KitUriType p11_kit_uri_type_t;