svgb/svgb/svgb.h
2017-03-09 21:27:36 +00:00

47 lines
1.8 KiB
C

/*
* $Id: svgb.h,v 1.1 2007/01/27 02:40:52 slava Exp $
*
* Copyright (C) 2007 by Slava Monich
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1.Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2.Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING
* IN ANY WAY OUT OF THE USE OR INABILITY TO USE THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation
* are those of the authors and should not be interpreted as representing
* any official policies, either expressed or implied.
*/
#ifndef _SVGB_H_
#define _SVGB_H_ 1
#include "s_lib.h"
#define SVGB_EXIT_OK 0
#define SVGB_EXIT_USAGE 1
#define SVGB_EXIT_ERROR 2
#define SVGB_EXIT_UNSUPPORTED 3
extern const Str pname;
extern Bool SVGB_Decode(File * in, File * out);
#define APP_VERSION "0.9.1"
#endif /* _SVGB_H_ */