1*1253Slq150181 /* 2*1253Slq150181 * CDDL HEADER START 3*1253Slq150181 * 4*1253Slq150181 * The contents of this file are subject to the terms of the 5*1253Slq150181 * Common Development and Distribution License (the "License"). 6*1253Slq150181 * You may not use this file except in compliance with the License. 7*1253Slq150181 * 8*1253Slq150181 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*1253Slq150181 * or http://www.opensolaris.org/os/licensing. 10*1253Slq150181 * See the License for the specific language governing permissions 11*1253Slq150181 * and limitations under the License. 12*1253Slq150181 * 13*1253Slq150181 * When distributing Covered Code, include this CDDL HEADER in each 14*1253Slq150181 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*1253Slq150181 * If applicable, add the following below this CDDL HEADER, with the 16*1253Slq150181 * fields enclosed by brackets "[]" replaced with your own identifying 17*1253Slq150181 * information: Portions Copyright [yyyy] [name of copyright owner] 18*1253Slq150181 * 19*1253Slq150181 * CDDL HEADER END 20*1253Slq150181 */ 21*1253Slq150181 22*1253Slq150181 /* 23*1253Slq150181 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24*1253Slq150181 * Use is subject to license terms. 25*1253Slq150181 */ 26*1253Slq150181 27*1253Slq150181 #ifndef _SYS_WSCONS_H 28*1253Slq150181 #define _SYS_WSCONS_H 29*1253Slq150181 30*1253Slq150181 #pragma ident "%Z%%M% %I% %E% SMI" 31*1253Slq150181 32*1253Slq150181 #ifdef __cplusplus 33*1253Slq150181 extern "C" { 34*1253Slq150181 #endif 35*1253Slq150181 36*1253Slq150181 #include <sys/strredir.h> 37*1253Slq150181 #include <sys/vnode.h> 38*1253Slq150181 #include <sys/types.h> 39*1253Slq150181 40*1253Slq150181 extern int wcvnget(minor_t, vnode_t **); 41*1253Slq150181 extern void wcvnrele(minor_t, vnode_t *); 42*1253Slq150181 43*1253Slq150181 44*1253Slq150181 #ifdef __cplusplus 45*1253Slq150181 } 46*1253Slq150181 #endif 47*1253Slq150181 48*1253Slq150181 #endif /* _SYS_WSCONS_H */ 49