X-Git-Url: http://git.onelab.eu/?p=libnl.git;a=blobdiff_plain;f=include%2Fnetlink%2Fobject.h;fp=include%2Fnetlink%2Fobject.h;h=0000000000000000000000000000000000000000;hp=6999ff29277e702d705588058e97cccfba33a226;hb=332c8b7561dcac7ac95cc0d07328b1cb22d780a6;hpb=eabdd897b75ecc1fac5e255229a899126085e57a diff --git a/include/netlink/object.h b/include/netlink/object.h deleted file mode 100644 index 6999ff2..0000000 --- a/include/netlink/object.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * netlink/object.c Generic Cacheable Object - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation version 2.1 - * of the License. - * - * Copyright (c) 2003-2006 Thomas Graf - */ - -#ifndef NETLINK_OBJECT_H_ -#define NETLINK_OBJECT_H_ - -#include -#include - -struct nl_cache; -struct nl_object; -struct nl_cache_ops; - -/* General */ -extern struct nl_object * nl_object_alloc(size_t size); -extern struct nl_object * nl_object_alloc_from_ops(struct nl_cache_ops *); -extern struct nl_object * nl_object_alloc_name(const char *); -extern void nl_object_free(struct nl_object *); -extern struct nl_object * nl_object_clone(struct nl_object *obj); -extern void nl_object_get(struct nl_object *); -extern void nl_object_put(struct nl_object *); -extern int nl_object_shared(struct nl_object *); -extern void nl_object_dump(struct nl_object *, - struct nl_dump_params *); -extern int nl_object_match(struct nl_object *, - struct nl_object *); - -/* Access Functions */ -extern int nl_object_get_refcnt(struct nl_object *); -extern struct nl_cache_ops * nl_object_get_ops(struct nl_object *); -extern struct nl_cache * nl_object_get_cache(struct nl_object *); -extern inline void * nl_object_priv(struct nl_object *); - -#endif