home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / mfcatl / objtwo.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  888b  |  33 lines

  1. // ObjTwo.cpp : implementation file
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CObjectTwo methods
  15.  
  16. #include "premfcat.h"
  17. #include "MfcAtl.h"
  18. #include <initguid.h>
  19. #include "interf.h"
  20. #include "ObjTwo.h"
  21.  
  22. #ifdef _DEBUG
  23. #define new DEBUG_NEW
  24. #undef THIS_FILE
  25. static char THIS_FILE[] = __FILE__;
  26. #endif
  27.  
  28. STDMETHODIMP CObjectTwo::get_SayHello(BSTR* bstr)
  29. {
  30.     *bstr = SysAllocString(OLESTR("Hello from Object Two!"));
  31.     return S_OK;
  32. }
  33.