aboutsummaryrefslogtreecommitdiff
path: root/shared/common/binport.h
blob: f29d24da9bf4ec9fa89f93c13527a1fc0c0de9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright (c) 2003-2004 krzYszcz and others.
 * For information on usage and redistribution, and for a DISCLAIMER OF ALL
 * WARRANTIES, see the file, "LICENSE.txt," in this distribution.  */

#ifndef __BINPORT_H__
#define __BINPORT_H__

enum { BINPORT_OK, BINPORT_MAXTEXT, BINPORT_MAXOLD, BINPORT_PDFILE,
       BINPORT_INVALID, BINPORT_CORRUPT, BINPORT_FAILED };

#ifndef MIXED_STANDALONE
int binport_read(t_binbuf *bb, char *filename, char *dirname);
void binport_write(t_binbuf *bb, char *filename, char *dirname);
#endif

#endif