home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / xicon05.zip / macread.h < prev    next >
C/C++ Source or Header  |  1993-05-06  |  1KB  |  33 lines

  1. /* This file is macread.h (part of XIcon)
  2.  *
  3.  * Copyright (C) 1993 by Norman Walsh
  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 2 of the License, or
  8.  *   (at your option) 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.  
  20. #ifndef MACREAD_H
  21. #define MACREAD_H
  22.  
  23. #include "macdata.h"
  24.  
  25. void read_mac_file();
  26. RsrcHdrStruct read_mac_header();
  27. RsrcMapStruct read_mac_map();
  28. RsrcTypeStruct read_mac_type();
  29. RsrcRefStruct read_mac_ref();
  30. enum MacResourceTypes MacResType(RsrcTypeStruct);
  31.  
  32. #endif /* not MACREAD_H */
  33.