| 3582 | } |
| 3583 | |
| 3584 | hb_container_t* hb_container_get_from_format(int format) |
| 3585 | { |
| 3586 | int i; |
| 3587 | for (i = 0; i < hb_containers_count; i++) |
| 3588 | { |
| 3589 | if (hb_containers[i].item.format == format) |
| 3590 | { |
| 3591 | return &hb_containers[i].item; |
| 3592 | } |
| 3593 | } |
| 3594 | |
| 3595 | return NULL; |
| 3596 | } |
| 3597 | |
| 3598 | int hb_container_get_from_name(const char *name) |
| 3599 | { |
no outgoing calls