File: global.h

package info (click to toggle)
exifprobe 2.0.1%2Bgit20170416.3c2b769-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,904 kB
  • sloc: ansic: 34,799; sh: 413; makefile: 82
file content (36 lines) | stat: -rw-r--r-- 1,325 bytes parent folder | download | duplicates (5)
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
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/*          EXIFPROBE - TIFF/JPEG/EXIF image file probe               */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* Copyright (C) 2002 by Duane H. Hesser. All rights reserved.        */
/*                                                                    */
/* See the file LICENSE.EXIFPROBE for terms of use.                   */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* @(#) $Id: global.h,v 1.6 2005/06/03 13:23:25 alex Exp $" */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

#ifndef GLOBAL_INCLUDED
#define GLOBAL_INCLUDED

char *Progname;
unsigned long Print_options = DEFAULT_OPTIONS;
unsigned long Max_undefined = 0UL;
unsigned long Max_makerdump = 0UL;
unsigned long Max_appdump = 0UL;
unsigned long Max_imgdump = 0UL;

unsigned long Start_offset =  0UL;

char *Make_name = (char *)0;
char *Model_name = (char *)0;
char *Software_name = (char *)0;

/* Used for undocumented -m, -l, -s options.                          */
char *Use_Make_name = (char *)0;
char *Use_Model_name = (char *)0;
char *Use_Software_name = (char *)0;

char *Camera_name_pattern = (char *)0;

#endif