ucx1-sys 0.1.0

Rust FFI bindings to UCX.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
* Copyright (C) Mellanox Technologies Ltd. 2001-2015.  ALL RIGHTS RESERVED.
* See file LICENSE for terms.
*/


void ucp_get_version(unsigned *major_version, unsigned *minor_version,
                     unsigned *release_number)
{
    *major_version  = @MAJOR_VERSION@;
    *minor_version  = @MINOR_VERSION@;
    *release_number = @PATCH_VERSION@;
}

const char *ucp_get_version_string()
{
	return "@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@";
}