私はメッセージと呼ばれる構造体を持っています:
typedef unsigned char messageType;
struct message{
message() : val(0), type(home),nDevice(0) {}
messageType type;
_int32 val;
char nDevice;
};
そして、私はその構造体へのポインタを持っています:
message* reply;
memcpyできるようにreply.valのアドレスを取得するにはどうすればよいですか? 例えば:
memcpy(inBuf+2,address here,4);