304.1.2
by Matthew Fuller
Run 'make indent' to reindent the world. |
1 |
/*
|
17
by Claude Lecommandeur
CTWM version 3.5 |
2 |
* [ ctwm ]
|
3 |
*
|
|
4 |
* Copyright 1992 Claude Lecommandeur.
|
|
304.1.2
by Matthew Fuller
Run 'make indent' to reindent the world. |
5 |
*
|
17
by Claude Lecommandeur
CTWM version 3.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 |
||
323.1.1
by Matthew Fuller
Dribble a couple const's through these things that are... y'know. |
41 |
extern void NewFontCursor(Cursor *cp, const char *str); |
93
by Richard Levitte
- Convert all functions to use proper prototypes. |
42 |
extern int NewBitmapCursor(Cursor *cp, char *source, char *mask); |
304.1.2
by Matthew Fuller
Run 'make indent' to reindent the world. |
43 |
extern Cursor MakeStringCursor(char *string); |
17
by Claude Lecommandeur
CTWM version 3.5 |
44 |
#endif /* _CURSOR_ */ |
45 |