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