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