MAPIProviderRS.cpp
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // Implementation of the CMAPIProviderCommand
  2. #include "stdafx.h"
  3. #include "OLEDBMail.h"
  4. //Added by Chuck Wood
  5. //This is to ensure that only one set of non-extern mapi 
  6. //functions are declared.
  7. #define MAIN
  8. #include "MAPIProviderRS.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMAPIProviderCommand
  11. HRESULT CMAPIProviderCommand::Execute(IUnknown * pUnkOuter, REFIID riid, DBPARAMS * pParams, 
  12.  LONG * pcRowsAffected, IUnknown ** ppRowset)
  13. {
  14. CMAPIProviderRowset* pRowset;
  15. return CreateRowset(pUnkOuter, riid, pParams, pcRowsAffected, ppRowset, pRowset);
  16. }