12 lines
165 B
C
12 lines
165 B
C
#ifndef _ORDERS_H
|
|
#define _ORDERS_H
|
|
|
|
struct DivOrders {
|
|
unsigned char ord[DIV_MAX_CHANS][128];
|
|
|
|
DivOrders() {
|
|
memset(ord,0,DIV_MAX_CHANS*128);
|
|
}
|
|
};
|
|
|
|
#endif |