相关代码 |
|
// Foo.cpp : Implementation of CFoo #include "stdafx.h" #include "Foo.h" // CFoo STDMETHODIMP CFoo::Something(void) { MessageBox(NULL, "Something", "Message", 0); return S_OK; } STDMETHODIMP CFoo::Buggy(void) { return Error("A nice error message", __uuidof(IFoo), E_UNEXPECTED); }