You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
411 B
C++
44 lines
411 B
C++
|
1 year ago
|
#include "HvdllStr.h"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
HvdllStr::HvdllStr()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
HvdllStr::~HvdllStr()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
int HvdllStr::InitStr()
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int HvdllStr::OpenHv(char * pcIP)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
HRESULT HvdllStr::CloseHv()
|
||
|
|
{
|
||
|
|
return S_OK;
|
||
|
|
}
|
||
|
|
|
||
|
|
HRESULT HvdllStr::HvIsConnected(INT32 *piStatus)
|
||
|
|
{
|
||
|
|
return S_OK;
|
||
|
|
}
|
||
|
|
|
||
|
|
HRESULT HvdllStr::SetHvCallBack(
|
||
|
|
void *pFunction,
|
||
|
|
void *pFirstParameter,
|
||
|
|
WORD wVideoID,
|
||
|
|
WORD wStream
|
||
|
|
)
|
||
|
|
{
|
||
|
|
return S_OK;
|
||
|
|
}
|
||
|
|
|