TSG-15458 基于Sentinel LDK的C API检查软锁/硬锁的授权是否有效

This commit is contained in:
luwenpeng
2023-06-12 10:49:35 +08:00
parent b836a3bf91
commit 61233aac97
10 changed files with 325 additions and 29 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _HASP_VERIFY_H
#define _HASP_VERIFY_H
#ifdef __cpluscplus
extern "C"
{
#endif
#include <stdint.h>
void hasp_verify(uint64_t feature_id, uint64_t interval_s);
#ifdef __cpluscplus
}
#endif
#endif