File: windowdata.c

package info (click to toggle)
xview 3.2p1.4-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 20,068 kB
  • ctags: 24,304
  • sloc: ansic: 241,105; yacc: 1,392; sh: 1,140; makefile: 273; lex: 76; perl: 54; asm: 50; cpp: 15
file content (26 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (9)
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
#ifndef lint
#ifdef sccs
static char     sccsid[] = "@(#)windowdata.c 1.16 93/06/28";
#endif
#endif

/*
 *	(c) Copyright 1989 Sun Microsystems, Inc. Sun design patents 
 *	pending in the U.S. and foreign countries. See LEGAL NOTICE 
 *	file for terms of the license.
 */

#include <xview_private/windowimpl.h>

Pkg_private int window_init();
Pkg_private int window_destroy_win_struct();
Xv_pkg          xv_window_pkg = {
    "Window", ATTR_PKG_WIN,
    sizeof(Xv_window_struct),
    &xv_drawable_pkg,
    window_init,
    window_set_avlist,
    window_get_attr,
    window_destroy_win_struct,
    NULL
};