1 /* 2 * layout_dump.h - 3 * 4 * Written by Eryk Vershen 5 */ 6 7 /* 8 * Copyright 1997,1998 by Apple Computer, Inc. 9 * All Rights Reserved 10 * 11 * Permission to use, copy, modify, and distribute this software and 12 * its documentation for any purpose and without fee is hereby granted, 13 * provided that the above copyright notice appears in all copies and 14 * that both the copyright notice and this permission notice appear in 15 * supporting documentation. 16 * 17 * APPLE COMPUTER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE 18 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 19 * FOR A PARTICULAR PURPOSE. 20 * 21 * IN NO EVENT SHALL APPLE COMPUTER BE LIABLE FOR ANY SPECIAL, INDIRECT, OR 22 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 23 * LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, 24 * NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 25 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 26 */ 27 28 #ifndef __layout_dump__ 29 #define __layout_dump__ 30 31 32 /* 33 * Defines 34 */ 35 36 37 /* 38 * Types 39 */ 40 enum { 41 kEnd, 42 kHex, 43 kDec, 44 kUns, 45 kBit 46 }; 47 48 typedef struct { 49 short byte_offset; 50 short bit_offset; 51 short bit_length; 52 short format; 53 char *name; 54 } layout; 55 56 57 /* 58 * Global Constants 59 */ 60 61 62 /* 63 * Global Variables 64 */ 65 66 67 /* 68 * Forward declarations 69 */ 70 71 72 /* 73 * Routines 74 */ 75 void dump_using_layout(void *buffer, layout *desc); 76 void DumpRawBuffer(uint8_t *bufferPtr, int length); 77 78 #endif /* __layout_dump__ */ 79