• why pointer doesn't change in struct?
    In below code,I think pointer pexam->pf and pf1 will be same, but why pexam->pf++ can't change? What mistake i make? Can someone will help me. thx! /////////////////////////// struct tagEXAM {...
  • struct pointer
    struct A { . . . }; struct B { struct A xdata *structA; . . . }; void test(struct B xdata *structB) { struct A xdata *structA = structB->structA; } structA is a pointer to xdata...
  • IP ERR: Frame too short
    With debugging turned on for TCPNET, I get the error "IP ERR: Frame too short" when Windows 7 sends my device a SSDP protocol type message (as seen in Wireshark). Regular ARP messages do not get any...
  • struct and pointer
    hi, i need a solution on how to read a struct which includes serveral types of vars with a pointer of type char. example: struct test { char a; int b; int c; char d; }; struct test s_test;...
  • overlaying struct pointers
    as many others, I'm sure, I am DATA space starved. We have, for backwards compatibility to process 'old files" (E1 format) which have the structures with the following pointers: E1_SEIN xdata *E1_SEINp;...