{ char *buf = new char[1024]; ZeroMemory(buf,1024) for(int i = 0; i < 1023; i++) { buf[i] = '5'; } int len = strlen(buf); //返回不含结束符0的字符串长度 } ...
分类:
编程语言 时间:
2019-11-04 22:10:35
阅读次数:
131
SHFILEOPSTRUCT FileOp; ZeroMemory((void*)&FileOp,sizeof(SHFILEOPSTRUCT)); FileOp.fFlags = FOF_NOCONFIRMATION ; FileOp.hNameMappings = NULL; FileOp.hwn... ...
分类:
移动开发 时间:
2019-05-09 10:46:16
阅读次数:
165
m_pDirect3D9 = Direct3DCreate9(D3D_SDK_VERSION); int w = 1920; int h = 1080; D3DPRESENT_PARAMETERS d3dpp; ZeroMemory(&d3dpp, sizeof(d3dpp)); d3dpp.Bac ...
分类:
编程语言 时间:
2018-04-12 11:41:53
阅读次数:
316
function UnicodeToAnsi(s: WideString): string;var lpChar: PChar; len: integer;begin len := Length(s) * 2; GetMem(lpChar, len); ZeroMemory(lpChar, len) ...
1 BROWSEINFO bi; 2 ZeroMemory(&bi, sizeof(BROWSEINFO)); 3 bi.hwndOwner = m_hWnd; 4 bi.ulFlags = BIF_RETURNONLYFSDIRS; 5 LPITEMIDLIST pidl = SHBrowseFo... ...
分类:
编程语言 时间:
2017-08-07 18:34:57
阅读次数:
153
1、MFC中点出对话框显示另存为的一个路径和文件: void CPatchDlg::OnBnClickedBtnPath() { //一下为选择另存为一个路径 m_strSavepath = ""; BROWSEINFO bi; ZeroMemory(&bi, sizeof(BROWSEINFO)) ...
分类:
编程语言 时间:
2017-05-14 10:24:38
阅读次数:
220
CString m_FileDir; BROWSEINFO bi; ZeroMemory(&bi, sizeof(BROWSEINFO)); bi.hwndOwner = m_hWnd; bi.ulFlags = BIF_RETURNONLYFSDIRS; LPITEMIDLIST pidl = S... ...
分类:
编程语言 时间:
2017-05-12 00:09:11
阅读次数:
188
ULONGLONG GetTimeSpan(){ /* WCHAR wszText[100];*/ __time64_t tmspan ; __time64_t tmnow,tm1970; struct tm atm ; ZeroMemory(&atm,sizeof(tm)); tm1970 = _ ...
分类:
其他好文 时间:
2017-04-13 18:03:06
阅读次数:
165
#include #include struct Vector4 { float x, y, z, w; }; struct Matrix { float _M[4][4]; public: //单位化 void Identity() { ZeroMemory((void*)_M,sizeof(f.... ...
分类:
其他好文 时间:
2017-02-24 12:09:01
阅读次数:
200
今天遇到一个问题,特在此记录,防止以后再次犯同样的错误:structUserInfo{ CStringUserName;//用户昵称 CStringIP;//用户IP SOCKETsocket;//用户的套接字 booloperator==(constUserInfo&uInfo)const { if(socket==uInfo.socket) returntrue; returnfalse; }};这是我..
分类:
其他好文 时间:
2016-10-15 14:36:15
阅读次数:
1029