summaryrefslogtreecommitdiffstats
path: root/private/mvdm/softpc.new/host/inc/sdos_ddi.h
blob: cbae25ad2c488d918754a16be41adade0ec82b0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 *    	Copyright (c) 1990, Sun Microsystems, Inc.  All Rights Reserved.
 *
 *	Sun considers its source code as an unpublished, proprietary
 *	trade secret, and it is available only under strict license
 *	provisions.  This copyright notice is placed here only to protect
 *	Sun in the event the source is deemed a published work.
 *	Dissassembly, decompilation, or other means of reducing the
 *	object code to human readable form is prohibited by the license
 *	agreement under which this code is provided to the user or
 *	company in possession of this copy.
 *
 *	RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by the
 *	Government is subject to restrictions as set forth in subparagraph
 *	(c)(1)(ii) of the Rights in Technical Data and Computer Software
 *	clause at DFARS 52.227-7013 and in similar clauses in the FAR and
 *	NASA FAR Supplement.
 *
 *	Steve Tice		08/17/90	First version with header.
 */

static char SccsID[]="@(#)sdos_ddi.h	1.1 4/25/91 Copyright Insignia Solutions Ltd.";

/*
 * This file describes the exported interface to the SDos device driver.
 */

#ifndef _sdos_ddi-h_
#define	_sdos_ddi-h_

enum zse_op {ZSE_INSTALL, ZSE_REMOVE};

struct zse_pkt {
	u_int		unit;	/* ZS unit number, 0 or 1 on an SS1 */
	enum zse_op	op;	/* install or remove the extensions? */
};

#define	SDOSIOCDOSZSEXT		_IOW(D, 106, struct zse_pkt)

#endif	/* _sdos_ddi-h_ */