Setting version of CCID core module.

This commit is contained in:
Pol Henarejos 2022-04-19 18:55:43 +02:00
parent cffee4264a
commit 39efd9b170
No known key found for this signature in database
GPG key ID: C0095B7870A4CCD3

View file

@ -18,10 +18,10 @@
#ifndef __VERSION_H_
#define __VERSION_H_
#define HSM_VERSION 0x010C
#define CCID_VERSION 0x0100
#define HSM_VERSION_MAJOR ((HSM_VERSION >> 8) & 0xff)
#define HSM_VERSION_MINOR (HSM_VERSION & 0xff)
#define CCID_VERSION_MAJOR ((CCID_VERSION >> 8) & 0xff)
#define CCID_VERSION_MINOR (CCID_VERSION & 0xff)
#endif