2N/A/*
2N/A * CDDL HEADER START
2N/A *
2N/A * The contents of this file are subject to the terms of the
2N/A * Common Development and Distribution License, Version 1.0 only
2N/A * (the "License"). You may not use this file except in compliance
2N/A * with the License.
2N/A *
2N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A * or http://www.opensolaris.org/os/licensing.
2N/A * See the License for the specific language governing permissions
2N/A * and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL HEADER in each
2N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A * If applicable, add the following below this CDDL HEADER, with the
2N/A * fields enclosed by brackets "[]" replaced with your own identifying
2N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2N/A *
2N/A * CDDL HEADER END
2N/A */
2N/A/* Copyright (c) 1988 AT&T */
2N/A/* All Rights Reserved */
2N/A
2N/A
2N/A/*
2N/A * Copyright (c) 1997, by Sun Mircrosystems, Inc.
2N/A * All rights reserved.
2N/A */
2N/A
2N/A#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.6 */
2N/A
2N/A/*LINTLIBRARY*/
2N/A
2N/A#include <sys/types.h>
2N/A#include "menu.h"
2N/A
2N/AMENU _Default_Menu = {
2N/A 16, /* height */
2N/A 1, /* width */
2N/A 16, /* rows */
2N/A 1, /* cols */
2N/A 16, /* frows */
2N/A 1, /* fcols */
2N/A 0, /* namelen */
2N/A 0, /* desclen */
2N/A 1, /* marklen */
2N/A 1, /* itemlen */
2N/A (char *) NULL, /* pattern */
2N/A 0, /* pindex */
2N/A (WINDOW *) NULL, /* win */
2N/A (WINDOW *) NULL, /* sub */
2N/A (WINDOW *) NULL, /* userwin */
2N/A (WINDOW *) NULL, /* usersub */
2N/A (ITEM **) NULL, /* items */
2N/A 0, /* nitems */
2N/A (ITEM *) NULL, /* curitem */
2N/A 0, /* toprow */
2N/A ' ', /* pad */
2N/A A_STANDOUT, /* fore */
2N/A A_NORMAL, /* back */
2N/A A_UNDERLINE, /* grey */
2N/A (PTF_void) NULL, /* menuinit */
2N/A (PTF_void) NULL, /* menuterm */
2N/A (PTF_void) NULL, /* iteminit */
2N/A (PTF_void) NULL, /* itemterm */
2N/A (char *) NULL, /* userptr */
2N/A "-", /* mark */
2N/A O_ONEVALUE|O_SHOWDESC|
2N/A O_ROWMAJOR|O_IGNORECASE|
2N/A O_SHOWMATCH|O_NONCYCLIC, /* opt */
2N/A 0 /* status */
2N/A};
2N/A
2N/AITEM _Default_Item = {
2N/A (char *) NULL, /* name.str */
2N/A 0, /* name.length */
2N/A (char *) NULL, /* description.str */
2N/A 0, /* description.length */
2N/A 0, /* index */
2N/A 0, /* imenu */
2N/A FALSE, /* value */
2N/A (char *) NULL, /* userptr */
2N/A O_SELECTABLE, /* opt */
2N/A 0, /* status */
2N/A 0, /* y */
2N/A 0, /* x */
2N/A 0, /* up */
2N/A 0, /* down */
2N/A 0, /* left */
2N/A 0 /* right */
2N/A};