#include "stdafx.h"#include <openssl/asn1.h>#include <openssl/asn1t.h>#pragma comment(lib,"libeay32.lib")
/*CardID ::= SEQUENCE { version Version DEFAULT v1, vendor VENDOR, guids GUIDS }
Version ::= INTEGER {v1(0), v2(1), v3(2)}VENDOR ::= IA5STRING(SIZE(0..8))GUID ::= OCTET STRING(SIZE(16))GU...
http://www.name321.com/chest/index.htm
添加以下注册表就OK了,和英文版没有关系,我中文版的就修好了:Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1000]"1207"=dword:00000000
DWORD GetServiceInfFilePath_Passthru( LPTSTR lpFilename, DWORD nSize ){ // Get Path to This Module DWORD nResult; TCHAR szDrive[ MAX_PATH ]; TCHAR szDir[ MAX_PATH ]; nResult = GetModuleFileName( NULL, lpFilename, nSize ); if( nResult == 0 ) { return 0; } _splitpath...
http://www.vckbase.com/code/listcode.asp?mclsid=3&sclsid=301
ListCtrl在工作中,常常用到,也常常看到大家发帖问怎么用这个控件,故总结了一下自己的使用经验,以供参考使用。先注明一下,这里,我们用m_listctrl来表示一个CListCtrl的类对象,然后这里我们的ListCtrl都是report形式,至于其他的如什么大图标,小图标的暂时不讲,毕竟report是大众话的使用。其次,我们这里用条款一,条款二来描述第一点,第二点,这个是参照《Effective C++》的叫法,俺觉得这么叫比较COOL :)条款一:设置ListCtrl的风格在CSDN上常常看到有人问怎么设置风格的,他们ListCtrl的样子是一个列表,有横条和竖条分界线,...
CRect rt; m_gb_Main.GetClientRect(&rt);
m_CBackground.SetWindowPos(NULL,0,5,rt.right,rt.bottom,SWP_HIDEWINDOW); m_CChangeUserPIN.SetWindowPos(NULL,5,25,rt.right-10,rt.bottom-30,SWP_SHOWWINDOW); m_CChangeKeyName.SetWindowPos(NULL,5,25,rt.right-10,rt.bottom-30,SWP_HIDEWINDOW); m_CViewKeyInfo...