xref: /freebsd/sys/geom/uzip/g_uzip.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
18f8cb840SMaxim Sobolev /*-
28f8cb840SMaxim Sobolev  * Copyright (c) 2004 Max Khon
38f8cb840SMaxim Sobolev  * Copyright (c) 2014 Juniper Networks, Inc.
48f8cb840SMaxim Sobolev  * Copyright (c) 2006-2016 Maxim Sobolev <sobomax@FreeBSD.org>
58f8cb840SMaxim Sobolev  * All rights reserved.
68f8cb840SMaxim Sobolev  *
78f8cb840SMaxim Sobolev  * Redistribution and use in source and binary forms, with or without
88f8cb840SMaxim Sobolev  * modification, are permitted provided that the following conditions
98f8cb840SMaxim Sobolev  * are met:
108f8cb840SMaxim Sobolev  * 1. Redistributions of source code must retain the above copyright
118f8cb840SMaxim Sobolev  *    notice, this list of conditions and the following disclaimer.
128f8cb840SMaxim Sobolev  * 2. Redistributions in binary form must reproduce the above copyright
138f8cb840SMaxim Sobolev  *    notice, this list of conditions and the following disclaimer in the
148f8cb840SMaxim Sobolev  *    documentation and/or other materials provided with the distribution.
158f8cb840SMaxim Sobolev  *
168f8cb840SMaxim Sobolev  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
178f8cb840SMaxim Sobolev  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
188f8cb840SMaxim Sobolev  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
198f8cb840SMaxim Sobolev  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
208f8cb840SMaxim Sobolev  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
218f8cb840SMaxim Sobolev  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
228f8cb840SMaxim Sobolev  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
238f8cb840SMaxim Sobolev  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
248f8cb840SMaxim Sobolev  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
258f8cb840SMaxim Sobolev  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
268f8cb840SMaxim Sobolev  * SUCH DAMAGE.
278f8cb840SMaxim Sobolev  */
28*443a0f85SAdrian Chadd #ifndef	__GEOM_G_UZIP_H__
29*443a0f85SAdrian Chadd #define	__GEOM_G_UZIP_H__
308f8cb840SMaxim Sobolev 
318f8cb840SMaxim Sobolev MALLOC_DECLARE(M_GEOM_UZIP);
328f8cb840SMaxim Sobolev 
338f8cb840SMaxim Sobolev #define DEFINE_RAW_METHOD(func, rval, args...) typedef rval (*func##_t)(args)
34*443a0f85SAdrian Chadd 
35*443a0f85SAdrian Chadd #endif	/* __GEOM_G_UZIP_H__ */
36