| 60 | |
| 61 | template<int NParam> |
| 62 | struct CommandData |
| 63 | { |
| 64 | uint32_t magic; |
| 65 | uint32_t sequence; |
| 66 | uint32_t max_response_length; |
| 67 | uint32_t command; |
| 68 | uint32_t reserved0; |
| 69 | uint32_t parameters[NParam]; |
| 70 | |
| 71 | CommandData() |
| 72 | { |
| 73 | for(int i = 0; i < NParam; ++i) |
| 74 | parameters[i] = 0; |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | template<> |
| 79 | struct CommandData<0> |
nothing calls this directly
no outgoing calls
no test coverage detected