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

📄 getsysteminfo.cpp

📁 Vc.Net入门与提高源码
💻 CPP
字号:
// DGetSystemInfo.cpp : Implementation of CDGetSystemInfo

#include "stdafx.h"
#include "GetSystemInfo.h"


// CDGetSystemInfo


STDMETHODIMP CDGetSystemInfo::GetMyComputerName(BSTR* pComputerName)
{   USES_CONVERSION;
	TCHAR lpBuffer[MAX_PATH];
	if(pComputerName==NULL)return E_INVALIDARG;
	DWORD len=MAX_PATH;
	::GetComputerName(lpBuffer,&len);
	*pComputerName=T2BSTR(lpBuffer);
    return S_OK;
}

⌨️ 快捷键说明

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