⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 classicatlspaceship.cpp

📁 不好意思
💻 CPP
字号:
// ClassicATLSpaceship.cpp : Implementation of CClassicATLSpaceship

#include "stdafx.h"
#include "ClassicATLSpaceship.h"


// CClassicATLSpaceship


STDMETHODIMP CClassicATLSpaceship::CallStarFleet(FLOAT fStarDate, BSTR* pbstRecipient)
{
    AtlTrace("Calling Star Fleet from the Classic ATL object\n");

    return S_OK;
}

STDMETHODIMP CClassicATLSpaceship::Fly()
{
    AtlTrace("Flying the Classic ATL object\n");
    return S_OK;
}

STDMETHODIMP CClassicATLSpaceship::GetPosition(long* lPosition)
{
    AtlTrace("Getting the position of the Classic ATL object\n");
    *lPosition = m_lPosition;
    return S_OK;
}

STDMETHODIMP CClassicATLSpaceship::Display()
{
    AtlTrace("Displaying the classic ATL object\n");
    return S_OK;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -