This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS 如何支持匿名联合体(或结构体)?



请问CCS v5是否支持匿名联合体(或结构体),如何设置?

如:

  1. struct    test_struct {  
  2.                                 char *name;  
  3.                                 union {  
  4.                                            char gender;  
  5.                                            int id;  
  6.                                            };  //这里不写名字!
  7.                                  int num;  
  8.                                  };