1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #ifndef SCENE_H_
| #define SCENE_H_
|
| #include "protocol.h"
|
| #define MAX_MODULE_NUM 320
|
| int scene_get_proc_type(short proc_id);
| void scene_type_update();
| void SceneToDSPFlowchart(char *bin, int *ret_size);
| int scene_cpy(int npkt,const void* param,int size);
| int scene_channel_copy(ptag_channel_copy pchannels);
|
| #endif
|
|