cursor.h revision 645f5050
1/*
2 *  [ ctwm ]
3 *
4 *  Copyright 1992 Claude Lecommandeur.
5 *
6 * Permission to use, copy, modify  and distribute this software  [ctwm] and
7 * its documentation for any purpose is hereby granted without fee, provided
8 * that the above  copyright notice appear  in all copies and that both that
9 * copyright notice and this permission notice appear in supporting documen-
10 * tation, and that the name of  Claude Lecommandeur not be used in adverti-
11 * sing or  publicity  pertaining to  distribution of  the software  without
12 * specific, written prior permission. Claude Lecommandeur make no represen-
13 * tations  about the suitability  of this software  for any purpose.  It is
14 * provided "as is" without express or implied warranty.
15 *
16 * Claude Lecommandeur DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL  IMPLIED WARRANTIES OF  MERCHANTABILITY AND FITNESS.  IN NO
18 * EVENT SHALL  Claude Lecommandeur  BE LIABLE FOR ANY SPECIAL,  INDIRECT OR
19 * CONSEQUENTIAL  DAMAGES OR ANY  DAMAGES WHATSOEVER  RESULTING FROM LOSS OF
20 * USE, DATA  OR PROFITS,  WHETHER IN AN ACTION  OF CONTRACT,  NEGLIGENCE OR
21 * OTHER  TORTIOUS ACTION,  ARISING OUT OF OR IN  CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 *
24 * Author:  Claude Lecommandeur [ lecom@sic.epfl.ch ][ April 1992 ]
25 */
26
27
28/**********************************************************************
29 *
30 * $XConsortium: add_window.h,v 1.7 90/04/17 14:04:33 jim Exp $
31 *
32 * Cursor include file
33 *
34 * 26-Feb-97 Richard Levitte    Initial Version.
35 *
36 **********************************************************************/
37
38#ifndef _CURSOR_
39#define _CURSOR_
40
41extern void NewFontCursor(Cursor *cp, char *str);
42extern int NewBitmapCursor(Cursor *cp, char *source, char *mask);
43extern Cursor MakeStringCursor (char *string);
44#endif /* _CURSOR_ */
45
46