File: vsdump.h

package info (click to toggle)
vsdump 0.0.45-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 632 kB
  • ctags: 98
  • sloc: ansic: 1,870; sh: 800; makefile: 96
file content (19 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <time.h>

#define VER_OFFSET  0x1a
#define SIZE_OFFSET 0x1c
#define TRLR_OFFSET 0x24

typedef struct {
	guint32	type;		/* was 'subtype' in the previous version */
	guint32	addr;
	guint32	offset;
	guint32	len;
	guint16	frmt;		/* was 'type' in previous version */
	guint32	prnt;		/* offset of stream from which this pointer was extracted -- "parent" */
} strm_ptr;