Leaked source code of windows server 2003
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

  1. // SniffStub.cpp : Implementation of CSniffStub
  2. #include "stdafx.h"
  3. #include "SStub.h"
  4. #include "SniffStub.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CSniffStub
  7. STDMETHODIMP CSniffStub::Sniff(BSTR strNodeName, BSTR strLaunchBasis, BSTR strAdditionalArgs, VARIANT *nState)
  8. {
  9. ::VariantInit(nState);
  10. V_VT(nState) = VT_I4;
  11. nState->lVal = -1;
  12. return S_OK;
  13. }