home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume18 / wclock / part01 / Outline.h < prev    next >
C/C++ Source or Header  |  1992-07-13  |  2KB  |  43 lines

  1. /*
  2.  * This file hacked from Weekday.c in the xdiary distribution by RJC.
  3.  */
  4.  
  5. /*
  6.  * Original author: Jason Baietto, jason@ssd.csd.harris.com
  7.  * xdiary Copyright 1990 Harris Computer Systems Division
  8.  *
  9.  * Permission to use, copy, modify, and distribute, this software and its
  10.  * documentation for any purpose is hereby granted without fee, provided that
  11.  * the above copyright notice appear in all copies and that both that
  12.  * copyright notice and this permission notice appear in supporting
  13.  * documentation, and that the name of the copyright holder be used in
  14.  * advertising or publicity pertaining to distribution of the software with
  15.  * specific, written prior permission, and that no fee is charged for further
  16.  * distribution of this software, or any modifications thereof.  The copyright
  17.  * holder makes no representations about the suitability of this software for
  18.  * any purpose.  It is provided "as is" without express or implied warranty.
  19.  *
  20.  * THE COPYRIGHT HOLDER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  21.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND IN NO
  22.  * EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  23.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM ITS USE,
  24.  * LOSS OF DATA, PROFITS, QPA OR GPA, WHETHER IN AN ACTION OF CONTRACT,
  25.  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
  26.  * THE USE OR PERFORMANCE OF THIS SOFTWARE.
  27.  */
  28.  
  29. #ifndef _OutlineConverter_h
  30. #define _OutlineConverter_h
  31.  
  32. extern void OutlineConverter();
  33.  
  34. #define XtROutline "Outline"
  35.  
  36. typedef enum {
  37.     NoOutline,
  38.     Bitmap,
  39.     Circle,
  40. } XtOutline;
  41.  
  42. #endif /* _OutlineConverter_h */
  43.