Windows2003-3790/enduser/troubleshoot/sstub/sniffstub.cpp

19 lines
421 B
C++
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
// 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;
}