📄 hotuse.cpp
字号:
// hotuse.cpp : Implementation of Chotuse
#include "stdafx.h"
#include "ComServer.h"
#include "hotuse.h"
/////////////////////////////////////////////////////////////////////////////
// Chotuse
STDMETHODIMP Chotuse::setranflg()
{
// TODO: Add your implementation code here
tranflg=1;
return S_OK;
}
STDMETHODIMP Chotuse::getranflg(short *flg)
{
// TODO: Add your implementation code here
if(tranflg)
*flg=1;
else
*flg=0;
return S_OK;
}
STDMETHODIMP Chotuse::getcopy_flag(int *flag)
{
// TODO: Add your implementation code here
*flag=copy_flag;
return S_OK;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -