你试薯升一下吧.
有一个Send函数,
原型为:
virtual
int
Send(
const
void*
lpBuf,
int
nBufLen,
int
nFlags
=
0
)
假设结构体对象为struct1,
你用下这困宴个
pSocket->Send((void*)&struct1,
sizeof(struct1))
如果是数组的话array,
试下这个:
pSocket->Senc((void*)data,
sizeof(array))
1)经常我尘并散们在MFC中如我们定义类或者蔽银结构体时,就会出现如下错误:E:/MusicRetrieval/FFT.CPP(3) : error C2146: syntax error : missing '' before identifier 'W'
E:/MusicRetrieval/FFT.CPP(3) : error C2501: 'complex' : missing storage-class or type specifiers
E:/MusicRetrieval/FFT.CPP(3) : fatal error C1004: unexpected end of file found解决办法:将头文件加派氏到stdafx.h;
2)出现如下错误时:
e:/musicretrieval/audiofeature.cpp(118) : fatal error C1010: unexpected end of file while looking for precompiled header directive解决办法:将stdafx.h加你cpp文件中
MFC程序也是一样的。如果只在一个cpp里面用漏仔搭,那么在这个cpp所有使用之前就可以。
通常,习惯返拿戚巧于放到.h头文件中。
全局多个地方都使用的结构体,可以放到app类头文件,或者stdafx.h中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)