mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
12eabe3031
filters in order. eg, f = composite_filter_create(2, regex_filter, persistent_filter); ownership of the filters passes, they will be destroyed when f's destroy method is called.
15 lines
257 B
C
15 lines
257 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the GPL.
|
|
*/
|
|
|
|
#ifndef _LVM_FILTER_COMPOSITE_H
|
|
#define _LVM_FILTER_COMPOSITE_H
|
|
|
|
#include "dev-cache.h"
|
|
|
|
struct dev_filter *composite_filter_create(int n, ...);
|
|
|
|
#endif
|