]> wimlib.net Git - wimlib/blob - programs/imagex-win32.h
mount_image.c: add fallback definitions of RENAME_* constants
[wimlib] / programs / imagex-win32.h
1 #ifndef _IMAGEX_WIN32_H
2 #define _IMAGEX_WIN32_H
3
4 #include <stddef.h>
5 #include <inttypes.h>
6
7 void
8 win32_print_security_descriptor(const uint8_t *sd, size_t size);
9
10 void
11 set_fd_to_binary_mode(int fd);
12
13 #include "wgetopt.h"
14
15 #define optarg                  woptarg
16 #define optind                  woptind
17 #define opterr                  wopterr
18 #define optopt                  woptopt
19 #define option                  woption
20
21 #define getopt_long_only        wgetopt_long_only
22 #define getopt_long             wgetopt_long
23 #define getopt                  wgetopt
24
25 #endif