📄 mytest.cpp
字号:
// MyTest.cpp : Implementation of CMTAServerApp and DLL registration.
#include "stdafx.h"
#include "MTAServer.h"
#include "MyTest.h"
/////////////////////////////////////////////////////////////////////////////
//
STDMETHODIMP CMyTest::InterfaceSupportsErrorInfo(REFIID riid)
{
static const IID* arr[] =
{
&IID_IMyTest,
};
for (int i=0;i<sizeof(arr)/sizeof(arr[0]);i++)
{
if (::InlineIsEqualGUID(*arr[i],riid))
return S_OK;
}
return S_FALSE;
}
STDMETHODIMP CMyTest::DoIt()
{
::MessageBox(NULL, "Hello World", "My Test", MB_OK);
return S_OK;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -