| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* Copyright (c) 2007, OmniTI Computer Consulting, Inc. |
|---|
| 3 |
* All rights reserved. |
|---|
| 4 |
*/ |
|---|
| 5 |
|
|---|
| 6 |
#ifndef _NOIT_FILTERS_H |
|---|
| 7 |
#define _NOIT_FILTERS_H |
|---|
| 8 |
|
|---|
| 9 |
#include "noit_defines.h" |
|---|
| 10 |
#include "utils/noit_hash.h" |
|---|
| 11 |
#include "noit_console.h" |
|---|
| 12 |
#include "noit_conf.h" |
|---|
| 13 |
#include "noit_check.h" |
|---|
| 14 |
|
|---|
| 15 |
API_EXPORT(void) |
|---|
| 16 |
noit_filters_init(); |
|---|
| 17 |
|
|---|
| 18 |
API_EXPORT(void) |
|---|
| 19 |
noit_refresh_filtersets(); |
|---|
| 20 |
|
|---|
| 21 |
API_EXPORT(noit_boolean) |
|---|
| 22 |
noit_apply_filterset(const char *filterset, |
|---|
| 23 |
noit_check_t *check, |
|---|
| 24 |
metric_t *metric); |
|---|
| 25 |
|
|---|
| 26 |
#endif |
|---|