1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/*
* Copyright (C) 1998,1999 Ross Combs (rocombs@cs.nmsu.edu)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef INCLUDED_BN_TYPE_TYPES
#define INCLUDED_BN_TYPE_TYPES
/* FIXME: Right now this assumes char>=8bits, short>=16bits, int>=32bits, long long>=64bits */
/* FIXME: For now if long long is not avaliable this assumes that no 64 type is avaliable */
/* host types */
typedef unsigned char t_byte;
typedef unsigned short t_short;
typedef unsigned int t_int;
#ifdef HAVE_LONG_LONG
#define HAVE_T_LONG
typedef unsigned long long t_long;
#endif
/* Battle.net types */
typedef unsigned char bn_basic;
typedef bn_basic bn_byte[1];
typedef bn_basic bn_short[2];
typedef bn_basic bn_int[4];
typedef bn_basic bn_long[8];
#endif
#ifndef JUST_NEED_TYPES
#ifndef INCLUDED_BN_TYPE_PROTOS
#define INCLUDED_BN_TYPE_PROTOS
extern int bn_byte_tag_set(bn_byte * dst, char const * tag);
extern int bn_short_tag_set(bn_short * dst, char const * tag);
extern int bn_int_tag_set(bn_int * dst, char const * tag);
extern int bn_long_tag_set(bn_long * dst, char const * tag);
extern t_byte bn_byte_get(bn_byte const src);
extern t_short bn_short_get(bn_short const src);
extern t_int bn_int_get(bn_int const src);
#ifdef HAVE_T_LONG
extern t_long bn_long_get(bn_long const src);
#endif
extern t_int bn_long_get_a(bn_long const src);
extern t_int bn_long_get_b(bn_long const src);
extern int bn_byte_set(bn_byte * dst, t_byte src);
extern int bn_short_set(bn_short * dst, t_short src);
extern int bn_short_nset(bn_short * dst, t_short src);
extern int bn_int_set(bn_int * dst, t_int src);
extern int bn_int_nset(bn_int * dst, t_int src);
#ifdef HAVE_T_LONG
extern int bn_long_set(bn_long * dst, t_long src);
extern int bn_long_nset(bn_long * dst, t_long src);
#endif
extern int bn_long_set_a_b(bn_long * dst, t_int srca, t_int srcb);
extern int bn_long_nset_a_b(bn_long * dst, t_int srca, t_int srcb);
extern int bn_raw_set(void * dst, void const * src, unsigned int len);
extern int bn_byte_tag_eq(bn_byte const src, char const * tag);
extern int bn_short_tag_eq(bn_short const src, char const * tag);
extern int bn_int_tag_eq(bn_int const src, char const * tag);
extern int bn_long_tag_eq(bn_long const src, char const * tag);
#endif
#endif
|