代码搜索:ZeroMemory
找到约 227 项符合「ZeroMemory」的源代码
代码结果 227
www.eeworm.com/read/415399/11074423
cpp comport.cpp
#include "stdafx.h"
#include "ComPort.h"
CComPort::CComPort()
:m_bOverlapped(FALSE),
m_hComm(INVALID_HANDLE_VALUE)
{
ZeroMemory(&m_ReadOverlapped, sizeof(OVERLAPPED));
ZeroMemory(&m_Write
www.eeworm.com/read/280856/10287659
cpp baseobject.cpp
#include "StdAfx.h"
#include ".\baseobject.h"
CBaseObject::CBaseObject(void)
{
ZeroMemory(m_szName, MAX_NAME);
ZeroMemory(&m_Basal, sizeof(m_Basal));
m_enBaseType = Type_Null;
m_pParent
www.eeworm.com/read/440844/7680175
cpp zfrustum.cpp
#include "ZFrustum.h"
#include "ZFLog.h"
ZFrustum::ZFrustum()
{
ZeroMemory( m_vtx, sizeof( m_vtx[0] ) * 8 );
ZeroMemory( m_plane, sizeof( m_plane[0] ) * 6 );
}
// 输入摄像机(view)*投影矩阵(project
www.eeworm.com/read/440844/7680245
cpp zfrustum.cpp
#include "ZFrustum.h"
#include "ZFLog.h"
ZFrustum::ZFrustum()
{
ZeroMemory( m_vtx, sizeof( m_vtx[0] ) * 8 );
ZeroMemory( m_plane, sizeof( m_plane[0] ) * 6 );
}
// 输入摄像机(view)*投影矩阵(project
www.eeworm.com/read/185441/9038179
txt 使用方法.txt
======================MFC使用方法============================================================
CString CPageApp::OSVer()
{
OSVERSIONINFOEX os;
::ZeroMemory(&os,sizeof(os));
os.dwOSVersionInfoSize
www.eeworm.com/read/161941/10356062
txt 使用方法.txt
======================MFC使用方法============================================================
CString CPageApp::OSVer()
{
OSVERSIONINFOEX os;
::ZeroMemory(&os,sizeof(os));
os.dwOSVersionInfoSize
www.eeworm.com/read/324806/13243037
txt 使用方法.txt
======================MFC使用方法============================================================
CString CPageApp::OSVer()
{
OSVERSIONINFOEX os;
::ZeroMemory(&os,sizeof(os));
os.dwOSVersionInfoSize
www.eeworm.com/read/318663/13474081
txt 使用方法.txt
======================MFC使用方法============================================================
CString CPageApp::OSVer()
{
OSVERSIONINFOEX os;
::ZeroMemory(&os,sizeof(os));
os.dwOSVersionInfoSize
www.eeworm.com/read/296011/8128649
txt xinhao.txt
void GetPhoneInformation(TCHAR * signalStrength, TCHAR * operatorName, TCHAR* LastIncallNumber)
{
HKEY hPhone;
TCHAR tszOperatorName[256];
TCHAR tszLastIncallNumber[256];
ZeroMemory(tszOpera
www.eeworm.com/read/125743/6022381
cpp osversion.cpp
#include "stdafx.h"
#include "hwinterfacedrv.h"
int SystemVersion()
{
OSVERSIONINFOEX osvi;
BOOL bOsVersionInfoEx;
ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));