-------------------------------------------------------------------------*/
| 1289 | } |
| 1290 | /*-------------------------------------------------------------------------*/ |
| 1291 | void |
| 1292 | nhcmdset_add(PNHCmdSet p, PNHCmdLayout layout) |
| 1293 | { |
| 1294 | assert(p); |
| 1295 | assert(p->count < NH_CMDSET_MAXSIZE); |
| 1296 | p->elements[p->count].layout = layout; |
| 1297 | p->elements[p->count].free_on_destroy = 0; |
| 1298 | p->count++; |
| 1299 | } |
| 1300 | /*-------------------------------------------------------------------------*/ |
| 1301 | void |
| 1302 | nhcmdset_destroy(PNHCmdSet p) |
no outgoing calls
no test coverage detected