ucx1-sys 0.1.0

Rust FFI bindings to UCX.
Documentation
/**
* Copyright (C) Mellanox Technologies Ltd. 2001-2014.  ALL RIGHTS RESERVED.
*
* See file LICENSE for terms.
*/


#ifndef UCT_VERSION_H_
#define UCT_VERSION_H_

#define UCT_VERNO_MAJOR            @MAJOR_VERSION@
#define UCT_VERNO_MINOR            @MINOR_VERSION@
#define UCT_VERNO_STRING           "@VERSION@"
#define UCT_SCM_VERSION            "@SCM_VERSION@"
                                   
#define UCT_MINOR_BIT              (16UL)
#define UCT_MAJOR_BIT              (24UL)
#define UCT_API                    ((@MAJOR_VERSION@L<<UCT_MAJOR_BIT)|(@MINOR_VERSION@L << UCT_MINOR_BIT))

#define UCT_VERSION(major, minor)  (((major)<<UCT_MAJOR_BIT)|((minor)<<UCT_MINOR_BIT))

#endif