19 lines
403 B
C++
19 lines
403 B
C++
|
// SniffStub.cpp : Implementation of CSniffStub
|
||
|
#include "stdafx.h"
|
||
|
#include "SStub.h"
|
||
|
#include "SniffStub.h"
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CSniffStub
|
||
|
|
||
|
|
||
|
STDMETHODIMP CSniffStub::Sniff(BSTR strNodeName, BSTR strLaunchBasis, BSTR strAdditionalArgs, VARIANT *nState)
|
||
|
{
|
||
|
::VariantInit(nState);
|
||
|
|
||
|
V_VT(nState) = VT_I4;
|
||
|
nState->lVal = -1;
|
||
|
|
||
|
return S_OK;
|
||
|
}
|