You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
203 B
18 lines
203 B
4 months ago
|
#ifndef NUGGET_KEYMASTER_H
|
||
|
#define NUGGET_KEYMASTER_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
enum {
|
||
|
KM_MNF_DEVICE_ID_VERSION = 1,
|
||
|
KM_MNF_MAX_ENTRY_SIZE = 30
|
||
|
};
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|