llib-lpanel revision 7c478bd95313f5f23a4c958a745db2134aa03244
4133N/A/*
4133N/A * CDDL HEADER START
4133N/A *
4133N/A * The contents of this file are subject to the terms of the
4133N/A * Common Development and Distribution License, Version 1.0 only
4133N/A * (the "License"). You may not use this file except in compliance
4133N/A * with the License.
4133N/A *
4133N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4133N/A * or http://www.opensolaris.org/os/licensing.
4133N/A * See the License for the specific language governing permissions
4133N/A * and limitations under the License.
4133N/A *
4133N/A * When distributing Covered Code, include this CDDL HEADER in each
4133N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4133N/A * If applicable, add the following below this CDDL HEADER, with the
4133N/A * fields enclosed by brackets "[]" replaced with your own identifying
4133N/A * information: Portions Copyright [yyyy] [name of copyright owner]
4133N/A *
4133N/A * CDDL HEADER END
5680N/A */
4133N/A/* Copyright (c) 1988 AT&T */
5680N/A/* All Rights Reserved */
5680N/A
5680N/A
4724N/A/*
4133N/A * Copyright (c) 1997, by Sun Microsystems, Inc.
4133N/A * All rights reserved.
4133N/A */
4723N/A
4133N/A#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.5 */
4723N/A
4723N/A/*LINTLIBRARY*/
4133N/A
4133N/A#include <sys/types.h>
4133N/A#include "panel.h"
5680N/A
5680N/Aint
5680N/Abottom_panel(PANEL *panel)
4133N/A{
4723N/A return OK;
4723N/A}
4723N/A
4133N/Aint
4133N/Ahide_panel(PANEL *panel)
5680N/A{
5680N/A return OK;
5680N/A}
5680N/A
4133N/Aint
4133N/Adel_panel(PANEL *panel)
4133N/A{
4133N/A return OK;
4133N/A}
4133N/A
4133N/AWINDOW
4723N/A*panel_window(PANEL *panel)
4723N/A{
4723N/A return (WINDOW *) 0;
4723N/A}
4133N/A
4133N/Achar
4133N/A*panel_userptr(PANEL *panel)
4133N/A{
4133N/A return (char *)0;
4133N/A}
4133N/A
4133N/Aint
4133N/Aset_panel_userptr(PANEL *panel, char *ptr)
4133N/A{
4133N/A return OK;
4133N/A}
4133N/A
4133N/APANEL
4133N/A*panel_above(PANEL *panel)
4133N/A{
4133N/A return (PANEL *) 0;
4133N/A}
4133N/A
4133N/APANEL
4133N/A*panel_below(PANEL *panel)
4133N/A{
4133N/A return (PANEL *) 0;
4133N/A}
4133N/A
4723N/Aint
4723N/Apanel_hidden(PANEL *panel)
4133N/A{
4133N/A return TRUE;
4723N/A}
4133N/A
4133N/Aint
4133N/Amove_panel(PANEL *panel, int starty, int startx)
4133N/A{
4133N/A return OK;
4133N/A}
5795N/A
5795N/APANEL
5795N/A*new_panel(WINDOW *window)
5795N/A{
5795N/A return (PANEL *) 0;
5795N/A}
5795N/A
5795N/Aint
5795N/Ashow_panel(PANEL *panel)
5795N/A{
5795N/A return OK;
5795N/A}
5795N/A
5795N/Aint
4723N/Areplace_panel(PANEL *panel, WINDOW *window)
4133N/A{
4133N/A return OK;
5795N/A}
4133N/A
4133N/Aint
4723N/Atop_panel(PANEL *panel)
4133N/A{
4133N/A return OK;
4723N/A}
void
update_panels(void)
{}