首页 > 代码库 > Windows控制台下绘制简单图形
Windows控制台下绘制简单图形
示例代码将在注册表位置:HKEY_CURRENT_USER\Software\ 读写键值
bool LicenseManage::OpenRegKey(HKEY& hRetKey) { if (ERROR_SUCCESS == RegOpenKey(HKEY_CURRENT_USER,"Software", &hRetKey)) { return true; } return false; } bool LicenseManage::CreateRegKey(string strSubKey, string strValueName, string strValue) { HKEY hKey; HKEY hSubKey; if (OpenRegKey(hKey)) { // 创建键 RegCreateKey(hKey,strSubKey.c_str(), &hSubKey); // 设置键值 if( ERROR_SUCCESS != RegSetValueEx(hSubKey,strValueName.c_str(),0,REG_SZ,(CONST BYTE *)strValue.c_str(),strValue.size()+1)) { return false; } RegCloseKey(hKey) ; //关闭注册表 return true; } return false; } bool LicenseManage::QueryRegKey(string strSubKey, string strValueName, string& strValue) { DWORD dwType= 1;//定义数据类型 DWORD dwLen = MAX_PATH; char data[MAX_PATH]; memset(data,0,sizeof(data)); HKEY hKey; HKEY hSubKey; if (OpenRegKey(hKey)) { string strTempKey = "Software\\"+strSubKey; if (ERROR_SUCCESS == RegOpenKey(HKEY_CURRENT_USER,strTempKey.c_str(), &hSubKey)) { if (ERROR_SUCCESS == RegQueryValueEx(hSubKey,strValueName.c_str(),0,&dwType,(LPBYTE)data,&dwLen)) { strValue = http://www.mamicode.com/data;>Windows控制台下绘制简单图形
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。