fctom1215
2020-03-10 e5e41dec2d41651c7160662ecf43325d49b07b66
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// 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 TextOsd(int type, const char *text);
void DrawScreen(const Polygon *map, const Polygon *car);
void SendMsgToMainProc(int cmd, const char *value);
void PlayTTS(const char *string, int id);
 
#endif //RTKBASESTATION_NATIVE_LIB_H