~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to routines/X11/Xmu/WinUtil.h

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $XConsortium: WinUtil.h,v 1.6 91/07/22 23:46:21 converse Exp $
 
2
 *
 
3
 * Copyright 1988 by the Massachusetts Institute of Technology
 
4
 *
 
5
 * Permission to use, copy, modify, and distribute this software and its
 
6
 * documentation for any purpose and without fee is hereby granted, provided 
 
7
 * that the above copyright notice appear in all copies and that both that 
 
8
 * copyright notice and this permission notice appear in supporting 
 
9
 * documentation, and that the name of M.I.T. not be used in advertising
 
10
 * or publicity pertaining to distribution of the software without specific, 
 
11
 * written prior permission. M.I.T. makes no representations about the 
 
12
 * suitability of this software for any purpose.  It is provided "as is"
 
13
 * without express or implied warranty.
 
14
 *
 
15
 * The X Window System is a Trademark of MIT.
 
16
 *
 
17
 * The interfaces described by this header file are for miscellaneous utilities
 
18
 * and are not part of the Xlib standard.
 
19
 */
 
20
 
 
21
#ifndef _XMU_WINDOWUTIL_H_
 
22
#define _XMU_WINDOWUTIL_H_
 
23
 
 
24
#include <X11/Xutil.h>
 
25
#include <X11/Xfuncproto.h>
 
26
 
 
27
_XFUNCPROTOBEGIN
 
28
 
 
29
extern Window XmuClientWindow(
 
30
#if NeedFunctionPrototypes
 
31
    Display*    /* dpy */,
 
32
    Window      /* win */
 
33
#endif
 
34
);
 
35
 
 
36
extern Bool XmuUpdateMapHints(
 
37
#if NeedFunctionPrototypes
 
38
    Display*    /* dpy */,
 
39
    Window      /* win */,
 
40
    XSizeHints* /* hints */
 
41
#endif
 
42
);
 
43
 
 
44
extern Screen *XmuScreenOfWindow(
 
45
#if NeedFunctionPrototypes
 
46
    Display*    /* dpy */,
 
47
    Window      /* w */
 
48
#endif
 
49
);
 
50
 
 
51
_XFUNCPROTOEND
 
52
 
 
53
#endif /* _XMU_WINDOWUTIL_H_ */