1*f1690374Shannken /*- 2*f1690374Shannken * Copyright (c) 2007 Pawel Jakub Dawidek <pjd@FreeBSD.org> 3*f1690374Shannken * All rights reserved. 4*f1690374Shannken * 5*f1690374Shannken * Redistribution and use in source and binary forms, with or without 6*f1690374Shannken * modification, are permitted provided that the following conditions 7*f1690374Shannken * are met: 8*f1690374Shannken * 1. Redistributions of source code must retain the above copyright 9*f1690374Shannken * notice, this list of conditions and the following disclaimer. 10*f1690374Shannken * 2. Redistributions in binary form must reproduce the above copyright 11*f1690374Shannken * notice, this list of conditions and the following disclaimer in the 12*f1690374Shannken * documentation and/or other materials provided with the distribution. 13*f1690374Shannken * 14*f1690374Shannken * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 15*f1690374Shannken * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*f1690374Shannken * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*f1690374Shannken * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 18*f1690374Shannken * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*f1690374Shannken * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*f1690374Shannken * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*f1690374Shannken * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*f1690374Shannken * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*f1690374Shannken * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*f1690374Shannken * SUCH DAMAGE. 25*f1690374Shannken * 26*f1690374Shannken * $FreeBSD$ 27*f1690374Shannken */ 28*f1690374Shannken 29*f1690374Shannken #ifndef _OPENSOLARIS_LIBSHARE_H_ 30*f1690374Shannken #define _OPENSOLARIS_LIBSHARE_H_ 31*f1690374Shannken 32*f1690374Shannken #define SA_OK 0 33*f1690374Shannken 34*f1690374Shannken #define SA_INIT_CONTROL_API 0 35*f1690374Shannken 36*f1690374Shannken #endif /* !_OPENSOLARIS_LIBSHARE_H_ */ 37