C のポインターについて助けが必要です。ファイルから読み取り、構造体 rcftp_msg へのポインターで配列を埋める必要があります。今以来、私は次のことをしました:
struct rcftp_msg {
uint8_t version;
uint8_t flags;
uint16_t len;
uint8_t buffer[512];
};
struct rcftp_msg *windows [10];
pfile = fopen(file,"r"); // Open the file
I have to read from the file into the buffer, but I don't know how to do it.
I tried the next:
for (i = 0; i <10; i++){
leng=fread (**windows[i]->buffer**,sizeof(uint8_t),512,pfile);
}
windows[i]->bufferが悪いと思います。
私の悪い英語でごめんなさい:(