fix include path error
This commit is contained in:
parent
c844a143fc
commit
43273652a0
|
@ -1,7 +1,7 @@
|
|||
#ifndef CONVERT_H
|
||||
#define CONVERT_H
|
||||
#include <string>
|
||||
#include <HCNetSDK.h>
|
||||
#include "HCNetSDK.h"
|
||||
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);
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
#include <bitset>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
#include "HCNetSDK.h"
|
||||
#include "HkStreamer.h"
|
||||
#include "convert.h"
|
||||
#include "../include/HCNetSDK.h"
|
||||
#include "../include/HkStreamer.h"
|
||||
#include "../include/convert.h"
|
||||
using namespace std;
|
||||
const int outcache_size=1024;
|
||||
void CALLBACK fPlayDataCallBack(LONG lPlayHandle, DWORD dwDataType, BYTE *pBuffer, DWORD dwBufSize, void* dwUser)
|
||||
{
|
||||
void CALLBACK fPlayDataCallBack(LONG lPlayHandle, DWORD dwDataType, BYTE *pBuffer, DWORD dwBufSize, void* dwUser){
|
||||
DWORD remained = dwBufSize;
|
||||
char cache[outcache_size]={0};
|
||||
BYTE *cp; // cp head point
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "cmdlineparser.h"
|
||||
#include "../include/cmdlineparser.h"
|
||||
#include <iostream>
|
||||
#include "string.h"
|
||||
#include "convert.h"
|
||||
|
||||
using namespace std;
|
||||
template<typename T>
|
||||
bool mapHasKey(map<int, T> *pMap, int key){
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "convert.h"
|
||||
#include "../include/convert.h"
|
||||
#include <string>
|
||||
#include <cstring>
|
||||
#include <HCNetSDK.h>
|
||||
#include "../include/HCNetSDK.h"
|
||||
#include "time.h"
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#include "HkStreamer.h"
|
||||
#include "../include/HkStreamer.h"
|
||||
#include <iostream>
|
||||
#include <cstring>
|
||||
#include <map>
|
||||
#include <getopt.h>
|
||||
#include <time.h>
|
||||
#include "cmdlineparser.h"
|
||||
#include "../include/cmdlineparser.h"
|
||||
using namespace std;
|
||||
|
||||
void error(string msg)
|
||||
|
|
Loading…
Reference in New Issue