16 lines
341 B
C++
16 lines
341 B
C++
// Detection.cpp : Implementation of CDetection
|
|
#include "stdafx.h"
|
|
#include "IUCtl.h"
|
|
#include "Detection.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDetection
|
|
|
|
|
|
STDMETHODIMP CDetection::Detect(BSTR bstrXML, DWORD *pdwDetectionResult)
|
|
{
|
|
// TODO: Add your implementation code here
|
|
|
|
return S_OK;
|
|
}
|