1330449Seadler/*-
2139721Semax * uuid-private.h
3139721Semax *
4330449Seadler * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
5330449Seadler *
6139721Semax * Copyright (c) 2005 Maksim Yevmenkin <m_evmenkin@yahoo.com>
7139721Semax * All rights reserved.
8139721Semax *
9139721Semax * Redistribution and use in source and binary forms, with or without
10139721Semax * modification, are permitted provided that the following conditions
11139721Semax * are met:
12139721Semax * 1. Redistributions of source code must retain the above copyright
13139721Semax *    notice, this list of conditions and the following disclaimer.
14139721Semax * 2. Redistributions in binary form must reproduce the above copyright
15139721Semax *    notice, this list of conditions and the following disclaimer in the
16139721Semax *    documentation and/or other materials provided with the distribution.
17139721Semax *
18139721Semax * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19139721Semax * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20139721Semax * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21139721Semax * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22139721Semax * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23139721Semax * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24139721Semax * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25139721Semax * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26139721Semax * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27139721Semax * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28139721Semax * SUCH DAMAGE.
29139721Semax *
30139721Semax * $Id: uuid-private.h,v 1.1 2004/12/09 18:20:26 max Exp $
31139721Semax * $FreeBSD: stable/11/usr.sbin/bluetooth/sdpd/uuid-private.h 330449 2018-03-05 07:26:05Z eadler $
32139721Semax */
33139721Semax
34139721Semax#ifndef _UUID_PRIVATE_H_
35139721Semax#define _UUID_PRIVATE_H_
36139721Semax
37139721Semaxextern	uint128_t	uuid_base;
38139721Semaxextern	uint128_t	uuid_public_browse_group;
39139721Semax
40139721Semax#endif /* ndef _UUID_PRIVATE_H_ */
41139721Semax
42