MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / hb_get_version

Function hb_get_version

libhb/hb.c:283–300  ·  view source on GitHub ↗

* Returns current version of libhb. * @param h Handle to hb_handle_t. * @return character array of version number. */

Source from the content-addressed store, hash-verified

281 * @return character array of version number.
282 */
283const 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.

Callers 3

ParseOptionsFunction · 0.85
ghb_versionFunction · 0.85
start_new_logFunction · 0.85

Calls

no outgoing calls

Tested by 1

ParseOptionsFunction · 0.68