// B1 62 ¹¦ÄÜÔ¤ÉèÇл»ÐÅÏ¢ #tagSCFuncPresetSwitchInfo
|
|
struct tagSCFuncPresetFunc
|
{
|
BYTE FuncPresetType; //Ô¤ÉèÀàÐÍ£¬2-ÕóÈÝ£»3-Ãü¸ñ£»
|
BYTE FuncPresetID; //¸ÃÈ«¾ÖÕ½¶·Ô¤Éèϱ¾¹¦ÄÜʹÓõÄÔ¤ÉèID
|
};
|
|
struct tagSCFuncPresetBat
|
{
|
BYTE BatPresetID; //ËùÊôÈ«¾ÖÕ½¶·Ô¤ÉèID
|
BYTE FuncCnt;
|
tagSCFuncPresetFunc FuncPresetList[FuncCnt];
|
};
|
|
struct tagSCFuncPresetSwitchInfo
|
{
|
tagHead Head;
|
BYTE BatPresetCnt;
|
tagSCFuncPresetBat BatPresetList[BatPresetCnt];
|
};
|