2023-03-31 18:32:46 +08:00
|
|
|
#ifndef CONVERT_H
|
|
|
|
#define CONVERT_H
|
|
|
|
#include <string>
|
2023-04-02 10:44:21 +08:00
|
|
|
#include "HCNetSDK.h"
|
2023-03-31 18:32:46 +08:00
|
|
|
using namespace std;
|
|
|
|
void convert_str_chararr(string src, char *dst, int dstlen);
|
|
|
|
void convert_isotimestr_time(string timestr, int timezone, LPNET_DVR_TIME time);
|
|
|
|
|
|
|
|
#endif // CONVERT_H
|