📄 zhujian1.cpp
字号:
// zhujian1.cpp : Implementation of Czhujian1
#include "stdafx.h"
#include "Server1.h"
#include "zhujian1.h"
/////////////////////////////////////////////////////////////////////////////
// Czhujian1
STDMETHODIMP Czhujian1::get_total(long *pVal)
{
// TODO: Add your implementation code here
*pVal=this->total;
return S_OK;
}
STDMETHODIMP Czhujian1::put_total(long newVal)
{
// TODO: Add your implementation code here
this->total=newVal;
return S_OK;
}
STDMETHODIMP Czhujian1::sum1(long x, long y, long z)
{
// TODO: Add your implementation code here
this->total=x+y+z;
return S_OK;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -