1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| // A3 40 ³É¾ÍÐÅÏ¢Áбí #tagMCSuccessInfoList
|
| struct tagMCSuccessInfo
| {
| WORD SuccType; //³É¾ÍÀàÐÍ
| WORD Len; //Ìõ¼þ³¤¶È
| char Condition[Len]; //³É¾ÍÌõ¼þ
| DWORD CntValue; //µ±Ç°Íê³É½ø¶ÈÖµ
| };
|
|
| struct tagMCSuccessInfoList
| {
| tagHead Head;
| WORD count; //ÐÅÏ¢¸öÊý
| tagMCSuccessInfo SuccessInfoList[count];
| };
|
|