From 5fcec589b7bbeb7ea23055e2cc939abfb917a21f Mon Sep 17 00:00:00 2001 From: "James R. Leu" Date: Wed, 26 Feb 2003 12:44:56 -0600 Subject: [PATCH] This file should have been deleted what ldp-portable was broken into the LSR and LDP parts. [git-p4: depot-paths = "//depot/ldp-portable/": change = 294] --- ldp/ldp_timer_impl.h | 74 ---------------------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 ldp/ldp_timer_impl.h diff --git a/ldp/ldp_timer_impl.h b/ldp/ldp_timer_impl.h deleted file mode 100644 index 3a1f3cc..0000000 --- a/ldp/ldp_timer_impl.h +++ /dev/null @@ -1,74 +0,0 @@ - -/* - * Copyright (C) James R. Leu 2000 - * jleu@mindspring.com - * - * This software is covered under the LGPL, for more - * info check out http://www.gnu.org/copyleft/lgpl.html - */ - -#ifndef _LDP_TIMER_IMPL_H_ -#define _LDP_TIMER_IMPL_H_ - -#include "ldp_struct.h" - -/* - * in: handle - * return: mpls_bool - */ -extern mpls_bool mpls_timer_mgr_handle_verify(mpls_timer_mgr_handle handle); - -/* - * in: handle, timer - * return: mpls_bool - */ -extern mpls_bool mpls_timer_handle_verify(mpls_timer_mgr_handle handle, - mpls_timer_handle timer); - -/* - * in: handle - * return: mpls_timer_mgr_handle - */ -extern mpls_timer_mgr_handle mpls_timer_open(mpls_instance_handle handle); - -/* - * in: handle - */ -extern void mpls_timer_close(mpls_timer_mgr_handle handle); - -/* - * in: handle, unit, duration, object, cfg, callback - * return: mpls_timer_handle - */ -extern mpls_timer_handle mpls_timer_create(const mpls_timer_mgr_handle handle, - const ldp_time_unit_enum unit, const int duration, void *object, - const mpls_cfg_handle cfg, void (*callback) (mpls_timer_handle timer, - void *object, mpls_cfg_handle cfg)); - -/* - * in: handle, timer - */ -extern void mpls_timer_delete(const mpls_timer_mgr_handle handle, - const mpls_timer_handle timer); - -/* - * in: handle, timer, unit, duration, object, cfg, callback - * out: mpls_return_enum - */ -extern mpls_return_enum mpls_timer_modify(const mpls_timer_mgr_handle handle, - const mpls_timer_handle timer, const int duration); - -/* - * in: handle, timer, type - * return: mpls_return_enum - */ -extern mpls_return_enum mpls_timer_start(const mpls_timer_mgr_handle handle, - const mpls_timer_handle timer, const mpls_timer_type_enum type); - -/* - * in: handle, timer - */ -extern void mpls_timer_stop(const mpls_timer_mgr_handle handle, - const mpls_timer_handle timer); - -#endif -- 2.11.4.GIT