yy1717
2019-12-30 fc56e0a4ae100692b21b53ec71d56c831073f8e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// Created by YY on 2019/10/14.
//
 
#ifndef RTKBASESTATION_NATIVE_LIB_H
#define RTKBASESTATION_NATIVE_LIB_H
 
#include <cstdint>
#include "Geometry.h"
 
char * GetImei(void);
 
int DESEncrypt(const uint8_t *key, int key_length,
               const uint8_t *plaintext, int plaintext_length,
               uint8_t **ciphertext);
 
void SetPlatformKey(const uint8_t *key, int length);
void DelPlatformKey(void);
int GetPlatformKey(uint8_t *pkey);
void SetSharedValue(const char *key, int value);
int GetSharedValue(const char *key);
void TextSpeak(const char *text);
void TextOsd(int type, const char *text);
void DrawScreen(const Polygon *map, const Polygon *car);
void CCL(int who);
void DisplayText(const char *string);
 
#endif //RTKBASESTATION_NATIVE_LIB_H