You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
421 B
18 lines
421 B
// 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;
|
|
}
|