#ifndef _LDP_HANDLE_TYPE_H_ #define _LDP_HANDLE_TYPE_H_ #if (__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0)) typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned int uint32_t; #else #include #endif typedef int ldp_instance_handle; typedef int* ldp_lock_handle; typedef int ldp_timer_mgr_handle; typedef struct ldp_timer_linux* ldp_timer_handle; typedef int ldp_mpls_handle; typedef int ldp_socket_mgr_handle; typedef int ldp_socket_handle; typedef int ldp_fib_handle; typedef int ldp_ifmgr_handle; typedef int ldp_if_handle; typedef int ldp_tree_handle; typedef int ldp_tunnel_handle; typedef int ldp_policy_handle; typedef uint32_t* ldp_trace_handle; typedef char* ldp_lock_key_type; typedef int ldp_size_type; #endif