19 lines
239 B
C
19 lines
239 B
C
//
|
|
// Created by Thom on 2019/3/8.
|
|
//
|
|
|
|
#ifndef BREVENT_APK_SIGN_V2_H
|
|
#define BREVENT_APK_SIGN_V2_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int checkSignature(const char *path);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //BREVENT_APK_SIGN_V2_H
|