]> mj.ucw.cz Git - pciutils.git/blob - pciutils.h
ChangeLog: Preparing for release
[pciutils.git] / pciutils.h
1 /*
2  *      The PCI Utilities -- Declarations
3  *
4  *      Copyright (c) 1997--2018 Martin Mares <mj@ucw.cz>
5  *
6  *      Can be freely distributed and used under the terms of the GNU GPL v2+
7  *
8  *      SPDX-License-Identifier: GPL-2.0-or-later
9  */
10
11 #include "lib/pci.h"
12 #include "lib/sysdep.h"
13 #include "lib/bitops.h"
14
15 /*
16  * gcc predefines macro __MINGW32__ for all MinGW targets.
17  * Including some MinGW header (e.g. windef.h) defines additional
18  * macro __MINGW32_MAJOR_VERSION (available for all MinGW targets).
19  */
20 #if defined(PCI_OS_WINDOWS) && defined(__MINGW32__)
21 #include <windef.h>
22 #endif
23
24 /*
25  * On Windows only MinGW 3.0 and higher versions provides <getopt.h>
26  * header file. Older MinGW versions and MSVC do not have it.
27  */
28 #if defined(PCI_OS_WINDOWS) && !(defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 3)
29 #include "compat/getopt.h"
30 #else
31 #include <unistd.h>
32 #endif
33
34 #define PCIUTILS_VERSION PCILIB_VERSION
35
36 extern const char program_name[];
37
38 void die(char *msg, ...) NONRET PCI_PRINTF(1,2);
39 void *xmalloc(size_t howmuch);
40 void *xrealloc(void *ptr, size_t howmuch);
41 char *xstrdup(const char *str);
42 int parse_generic_option(int i, struct pci_access *pacc, char *arg);
43
44 #ifdef PCI_HAVE_PM_INTEL_CONF
45 #define GENOPT_INTEL "H:"
46 #define GENHELP_INTEL "-H <mode>\tUse direct hardware access (<mode> = 1 or 2)\n"
47 #else
48 #define GENOPT_INTEL
49 #define GENHELP_INTEL
50 #endif
51 #if defined(PCI_HAVE_PM_DUMP) && !defined(PCIUTILS_SETPCI)
52 #define GENOPT_DUMP "F:"
53 #define GENHELP_DUMP "-F <file>\tRead PCI configuration dump from a given file\n"
54 #else
55 #define GENOPT_DUMP
56 #define GENHELP_DUMP
57 #endif
58
59 #define GENERIC_OPTIONS "A:GO:" GENOPT_INTEL GENOPT_DUMP
60 #define GENERIC_HELP \
61         "-A <method>\tUse the specified PCI access method (see `-A help' for a list)\n" \
62         "-O <par>=<val>\tSet PCI access parameter (see `-O help' for a list)\n" \
63         "-G\t\tEnable PCI access debugging\n" \
64         GENHELP_INTEL GENHELP_DUMP