xref: /netbsd-src/sys/dev/putter/putter.h (revision 9ac65ee1fe4d26571f79d85ab0844c03a3af8745)
1*9ac65ee1Spooka /*	$NetBSD: putter.h,v 1.1 2007/11/12 16:39:33 pooka Exp $	*/
2*9ac65ee1Spooka 
3*9ac65ee1Spooka /*
4*9ac65ee1Spooka  * Copyright (c) 2007  Antti Kantee.  All Rights Reserved.
5*9ac65ee1Spooka  *
6*9ac65ee1Spooka  * Development of this software was supported by the
7*9ac65ee1Spooka  * Research Foundation of Helsinki University of Technology
8*9ac65ee1Spooka  *
9*9ac65ee1Spooka  * Redistribution and use in source and binary forms, with or without
10*9ac65ee1Spooka  * modification, are permitted provided that the following conditions
11*9ac65ee1Spooka  * are met:
12*9ac65ee1Spooka  * 1. Redistributions of source code must retain the above copyright
13*9ac65ee1Spooka  *    notice, this list of conditions and the following disclaimer.
14*9ac65ee1Spooka  * 2. Redistributions in binary form must reproduce the above copyright
15*9ac65ee1Spooka  *    notice, this list of conditions and the following disclaimer in the
16*9ac65ee1Spooka  *    documentation and/or other materials provided with the distribution.
17*9ac65ee1Spooka  *
18*9ac65ee1Spooka  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
19*9ac65ee1Spooka  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20*9ac65ee1Spooka  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21*9ac65ee1Spooka  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22*9ac65ee1Spooka  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23*9ac65ee1Spooka  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24*9ac65ee1Spooka  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25*9ac65ee1Spooka  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26*9ac65ee1Spooka  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27*9ac65ee1Spooka  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28*9ac65ee1Spooka  * SUCH DAMAGE.
29*9ac65ee1Spooka  */
30*9ac65ee1Spooka 
31*9ac65ee1Spooka #ifndef _DEV_PUTTER_PUTTER_H_
32*9ac65ee1Spooka #define _DEV_PUTTER_PUTTER_H_
33*9ac65ee1Spooka 
34*9ac65ee1Spooka #include <sys/types.h>
35*9ac65ee1Spooka 
36*9ac65ee1Spooka struct putter_hdr {
37*9ac65ee1Spooka 	uint64_t	pth_framelen;
38*9ac65ee1Spooka };
39*9ac65ee1Spooka 
40*9ac65ee1Spooka #endif /* _SYS_PUTTER_PUTTER_H_ */
41