home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / xtron-1_1a / xpm2pixmap.h < prev    next >
C/C++ Source or Header  |  1995-04-16  |  1KB  |  38 lines

  1. /* xpm2pixmap.h - xtron v1.1 header for xpm2pixmap.c
  2.  *
  3.  *   Copyright (C) 1995 Rhett D. Jacobs <rhett@hotel.canberra.edu.au>
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 1, or (at your option)
  8.  *  any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *  Last Modified: 16/4/95
  20.  */
  21.  
  22. #ifndef _XPM2PIXMAP_H
  23. #define _XPM2PIXMAP_H
  24.  
  25. #include <stdio.h>
  26. #include <string.h>
  27. #include <xpm.h>
  28.  
  29. #include "resource.h"
  30.  
  31. #ifndef MAX_PATH_LEN
  32. #define MAX_PATH_LEN 1024
  33. #endif
  34.  
  35. Pixmap ReadXPM(char *filename);
  36.  
  37. #endif
  38.