]> err.no Git - yubikey-personalization/blob - ykpers-args.h
Merge tag 'v1.15.1'
[yubikey-personalization] / ykpers-args.h
1 /* -*- mode:C; c-file-style: "bsd" -*- */
2 /*
3  * Copyright (c) 2008-2014 Yubico AB
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *
13  *     * Redistributions in binary form must reproduce the above
14  *       copyright notice, this list of conditions and the following
15  *       disclaimer in the documentation and/or other materials provided
16  *       with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef YKPERS_ARGS_H
32 #define YKPERS_ARGS_H
33
34 const char *usage;
35
36 int args_to_config(int argc, char **argv, YKP_CONFIG *cfg, YK_KEY *yk,
37                    const char **infname, const char **outfname,
38                    int *data_format, bool *autocommit,
39                    YK_STATUS *st, bool *verbose, bool *dry_run,
40                    unsigned char *access_code, bool *use_access_code,
41                    char *keylocation, char *ndef_type, char *ndef, unsigned char *usb_mode,
42                    bool *zap, unsigned char *scan_bin, unsigned char *cr_timeout,
43                    unsigned char *autoeject_timeout, int *num_modes_seen, int *exit_code);
44
45 void report_yk_error(void);
46
47 #endif