* Returns current version of libhb. * @param h Handle to hb_handle_t. * @return character array of version number. */
| 281 | * @return character array of version number. |
| 282 | */ |
| 283 | const char * hb_get_version( hb_handle_t * h ) |
| 284 | { |
| 285 | // Silence compiler warnings for unused variables |
| 286 | ((void)(hb_title)); |
| 287 | ((void)(hb_name)); |
| 288 | ((void)(hb_website)); |
| 289 | ((void)(hb_community)); |
| 290 | ((void)(hb_irc)); |
| 291 | ((void)(hb_version)); |
| 292 | ((void)(hb_repo_url)); |
| 293 | ((void)(hb_repo_tag)); |
| 294 | ((void)(hb_repo_rev)); |
| 295 | ((void)(hb_repo_hash)); |
| 296 | ((void)(hb_repo_branch)); |
| 297 | ((void)(hb_repo_remote)); |
| 298 | ((void)(hb_repo_type)); |
| 299 | return hb_version; |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * Returns current build of libhb. |
no outgoing calls