2 * The PCI Utilities -- Declarations
4 * Copyright (c) 1997--2018 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL v2+
8 * SPDX-License-Identifier: GPL-2.0-or-later
12 #include "lib/sysdep.h"
13 #include "lib/bitops.h"
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).
20 #if defined(PCI_OS_WINDOWS) && defined(__MINGW32__)
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.
28 #if defined(PCI_OS_WINDOWS) && !(defined(__MINGW32_MAJOR_VERSION) && __MINGW32_MAJOR_VERSION >= 3)
29 #include "compat/getopt.h"
34 #define PCIUTILS_VERSION PCILIB_VERSION
36 extern const char program_name[];
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);
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"
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"
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