-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlzf_filter.h
38 lines (29 loc) · 874 Bytes
/
lzf_filter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/***** Preamble block *********************************************************
*
* This file is part of h5py, a low-level Python interface to the HDF5 library.
*
* Copyright (C) 2008 Andrew Collette
* http://h5py.alfven.org
* License: BSD (See LICENSE.txt for full license)
*
* $Date$
*
****** End preamble block ****************************************************/
#ifndef H5PY_LZF_H
#define H5PY_LZF_H
#ifdef __cplusplus
extern "C" {
#endif
/* Filter revision number, starting at 1 */
#define H5PY_FILTER_LZF_VERSION 4
/* Filter ID registered with the HDF Group as of 2/6/09. For maintenance
requests, contact the filter author directly. */
#define H5PY_FILTER_LZF 32000
/* Register the filter with the library. Returns a negative value on failure,
and a non-negative value on success.
*/
int register_lzf(void);
#ifdef __cplusplus
}
#endif
#endif