| // MyAPI.cpp : CMyAPI のインプリメンテーション
#include "stdafx.h"
#include "MyCom.h"
#include "MyAPI.h"
#include <lightbox.h>
/////////////////////////////////////////////////////////////////////////////
// CMyAPI
STDMETHODIMP CMyAPI::MsgBox(BSTR Message)
{
_bstr_t bstr;
bstr.operator = (Message);
::MessageBox( NULL, (LPTSTR)bstr, "確認", MB_OK );
return S_OK;
}
| |